Questions tagged [conversational-ai]

17 questions
2
votes
1 answer

Make a realtime realistic 3D avatar with text-to-speech, Viseme Lip-sync, and emotions/gestures

I have used Haptek in the past but is now defunct. To see what I want to do: ejTalk Cassandra The idea is to send a text string with as "text-to-say(with ssml):avatar-emotion:avatar-gesture" I will adapt to any sort of markup. The ejTalk engine…
2
votes
0 answers

RASA: How to build mixed-Initiative conversations?

I ask a question/help request regarding how to set-up a mixed-initiative chatbot in RASA For mixed-initiative conversational bot, I mean a chat-bot thatallows both User-initiative: The bot simply reply to user requests(I also call this:…
1
vote
3 answers

How to detect whether ConversationalRetrievalChain called the OpenAI LLM?

I have the following code: chat_history = [] embeddings = OpenAIEmbeddings() db = FAISS.from_documents(chunks, embeddings) qa = ConversationalRetrievalChain.from_llm(OpenAI(temperature=0.1), db.as_retriever()) result = qa({"question": "What is stack…
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
1
vote
0 answers

Conversational Bot with Flan-T5

I am building a chat bot using flan-T5 model. The bot has a text window where one can give instructions like: Summarize this for me "big text goes here" Or, one might dump the text first in the chat window and then say Summarize the above text…
Darth.Vader
  • 5,079
  • 7
  • 50
  • 90
1
vote
1 answer

How to manage multiple domains in RASA?

for domain I do not mean the domain.yml file, but the general concept of a group of intents that belong to the same semantic domain/topic. Following the above premise, suppose your conversational application has to manage 10 different domains, each…
Giorgio Robino
  • 2,148
  • 6
  • 38
  • 59
1
vote
0 answers

Choosing a chat-bot framework for data science research project and understanding the hidden costs of the development and rollout?

The question is about using a chat-bot framework in a research study, where one would like to measure the improvement of a rule-based decision process over time. For example, we would like to understand how to improve the process of medical…
1
vote
1 answer

Bot framework composer save conversational data to external DB

I am new to Bot framework composer. One of my requirements is to save entire conversation transcript. I explored some websites and found a possible solution to blob storage/ cosmoDB. Is that possible to save to external DB (relational) through…
0
votes
0 answers

Modify LangChain's conversational agent to reply with emoticons

I'm creating a friendly chat with conversational agent in LangChain, but I want that AI answer me the greetings with emojis or use emojis while chatting. For example: -Me: Hello, how are you? -AI: I'm very well :) I have the following in my python…
0
votes
0 answers

What is the current state of Botium

I'm currently working on a chatbot system for a larger energie company, and we are investigating a way to use more automatic testing. For the website we are using Cypress, but we also want to test our WhatsApp integration and possibly IVR (voice).…
Andries
  • 175
  • 1
  • 9
0
votes
0 answers

How to create a Conversational Chatbot using external SQL dataset?

I am trying to create a OpenAI Chatbot using GPT-3 Model by connecting it to air-dialogue dataset. I want to mimic conversations given in the dataset and connect it to the knowledge base given in the dataset. I have tried to use langchain agents…
0
votes
0 answers

intent classification- openai/ langchain

What are the ways that we can do intent classification in a conversation. If we have used conversational chain is there anyway we can do that. I need to identify the users intention to update or insert operation. But I dont know which line exactly…
0
votes
0 answers

How does intent classification work in Conversational Language Understanding (CLU) in Azure Language Service?

I am trying to figure out how the CLU model classifies an utterance to an intent and how is the score, mentioned next to the intent, calculated? If I put in a query like "Today is such a good day" and I want the intent to be "Happy", considering I…
0
votes
1 answer

Upload "Utterances" API not available in microsof CLU

I was using LUIS previously and using api, I would upload my json file containing intents, entities and utterances to my project. Now as LUIS is expired and Microsoft has replaced it with CLU(Conversational Language Understanding). I cannot find any…
0
votes
0 answers

Creating voice assistant in python and storing user's input

I have created a very simple voice assistant that listens to the user's input (more specifically, the user's story). Now, I want to create a function that stores the user's input - hereby, I have multiple questions: Do I need a dictionary or a…
Lea
  • 7
  • 2
0
votes
1 answer

Does Google Dialogflow have intent recommendation?

I'm switching from IBM Watson Assistant to Google Dialogflow. In WA there's a feature called intent recommendation, which taps into live instances, detects the topics/intents that users want, and groups them together into new recommended intents.…
1
2