Pritam
@Pritam_Awatade
Followers
300
Following
6K
Media
889
Statuses
6K
build fail rebuild. https://t.co/d8kzwukdkp Turning idea to code and code to product building https://t.co/7dMGgfRRRU
Joined December 2023
ooh yeah!!! crossed 85+ users crossed 100+ commits crossed 80+ upvoted building https://t.co/iOvVCZU4YO turning out to be fun
0
0
19
💯
0
0
4
Install now!
0
0
2
Now what is local context? Local context is something that your code can access during run time. data, dependencies or data needed by tools, callbacks. Eg: const result = await run(agent, 'What is the age of the user?', { context: userInfo, });
0
0
0
You can use that conversationId to manage your conversations. const first = await run(agent, 'What city is the Golden Gate Bridge in?', { conversationId, });
1
0
0
Traditionally we have to maintain a classic sever + DB combo to store and manage chats between user and LLM. but now we can store the whole conversation on openAI server with close to zero configuration. const { id: conversationId } = await client.conversations.create({});
1
0
0
Learned about Server conversation and runtime local context in OpenAI agent SDK by @piyushgarg_dev How we can store conversations on the server without Database or any server configurations, How we can give the runtime context to the AI Agent?
1
1
6