You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I just found this repo and it looks very promising.
I have a few qestions, which I could not find in the documentation:
how exactly does langcorn "know" or identify which input parameters are available in the llm chain?
I could not find an example for handling memory in a conversation bot? how does this work? the history has always be handled on the client and send as a parameter on every request?
additional question: are you planning any kind of session handling (like session ids and history) on the server side?
Thank you and best regards
Christian
The text was updated successfully, but these errors were encountered:
I could not find an example for handling memory in a conversation bot? how does this work? the history has always be handled on the client and send as a parameter on every request?
Right, because currently, there is no support for user sessions. That would allow us to persist the history on the server side.
additional question: are you planning any kind of session handling (like session ids and history) on the server side?
I am open to suggestions or feature requests. How would you configure or implement a user session for your app?
I think authentication and sessions for the api requests could be implemented via json web tokens. The server would then also need some kind of storage for api users, tokens, history. This could be in memory or in a database. This might be out of scope for your project ATM, but could become neccesary in the future and/or in production environments.
Hi there, I just found this repo and it looks very promising.
I have a few qestions, which I could not find in the documentation:
Thank you and best regards
Christian
The text was updated successfully, but these errors were encountered: