Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
58 views

I have a scheduler that triggers a tool function later (outside the original user–model exchange). When the scheduled time comes, it sends a ToolMessage back into the chat model — but the model ...
Md Vicky's user avatar
1 vote
0 answers
322 views

I failed to use apply_chat_template when using function calling. Is there something I missed? Example I downloaded tokenizer.json and tokenizer_config.json for testing function calling to see its full ...
happycat's user avatar
-1 votes
1 answer
68 views

I have a client that is asking the server for n elements. The server is asking ChatGPT for n elements, but sometimes ChatGPT returns n-1 or n+1 elements. Client Code const count = 3; var elements = ...
Evorlor's user avatar
  • 7,436
1 vote
0 answers
283 views

I'm using LangChain's Structured Chat Agent and tools to build an analytics assistant. One of the tools I've defined is get_social_insights, which fetches Instagram insights for the account. However, ...
Sahil's user avatar
  • 11
0 votes
1 answer
134 views

I am developing a chatbot for my company, and I have created middleware in Spring Boot to access my assistant using API calls (make a thread and send messages on it, create a run and then receive a ...
Mikhail Saveliev's user avatar
0 votes
1 answer
140 views

I referred to an example from LangChain about using few-shot prompting along with function calling for my project. The following code snippet is taken from LangChain's documentation: from ...
Loc's user avatar
  • 11
0 votes
1 answer
508 views

I'm using ai to take an input from a user then based on the users input the ai will decide on what function to call. I'm using Microsoft semantic kernel, function calling method to do this. Foreach ...
FriedBrain's user avatar
0 votes
1 answer
981 views

I wrote a small Google Apps Script that basically calls a trained Chat-GPT Playground Assistant to answer my query. The code is working perfectly when using it for example with a default model such ...
Niels van Gorsel's user avatar
0 votes
0 answers
917 views

I'm using function calling in OpenAI to get search results from web to give OpenAi's gpt-3.5-turbo model some context when answering questions. I want to stream the response as soon as it becomes ...
noocoder777's user avatar
0 votes
1 answer
2k views

I am currently working on a gpt content creator system, and as I am using Mac it does not let me migrate to newer OpenAI library or downgrade it. Could I replace the ChatCompletion function with ...
Divine's user avatar
  • 31
0 votes
1 answer
522 views

I am creating a chat summarizer app where the input is an Excel file with chat transcripts. Each row of the Excel sheet corresponds to a new chat. The app summarizes the chat in the adjacent column. ...
Ravi Kumar's user avatar
1 vote
2 answers
6k views

I am trying to create a GPT chatbot for restaurants that can ask customers for their contact info and time of reservation. After the AI chatbot is sure the customer has provided it with all of these ...
Matthew Gerges's user avatar
0 votes
1 answer
1k views

So officially you cannot pass ChatGPT questions via the browser URL (only via API), unofficially however, I've gotten very close by creating a user script, which essentially reads a parameter I pass ...
brooklynsweb's user avatar