this post was submitted on 09 Nov 2023
1 points (100.0% liked)

Side Project

29 readers
1 users here now

A community for sharing and receiving constructive feedback on side projects.

founded 10 months ago
MODERATORS
 

Hello, I'm working on an ERP system and would like to integrate it with an AI assistant. I would like that assistant to give answers based on the data in my system, in real time. For example, who is working where, and who is busy or free at the moment? Are there any issues, etc.?

On top of that it would be ideal if I could also issue commands/instructions and that assistant could execute corresponding actions based on them. If the assistant doesn't have enough info about a certain action he could ask a follow-up question(s) until he has.

The way I'm thinking about implementing this is something close to RAG (Retrieval Augmented Generation), where I would provide the full context to the assistant before asking the question. For instructions, I would provide the types of instructions that exist and tell the assistant that he can only use those.

The main issue with this is that LLMs have a limited context window size (they can only take N tokens - fixed) and my data from the system might exceed that.

Before I start thinking about how to implement this, I thought that I could first check if there are any existing tools on the market that do this for you.

top 1 comments
sorted by: hot top controversial new old
[–] edzorg@alien.top 1 points 10 months ago

Ha, yes, this week OpenAI supports this with Custom GPTs. Suits your use case perfectly.

A custom GPT can be a custom prompt, a database connection, a collection of files or ALL OF THE ABOVE.