OpenAi isn't open source. ๐ค
Open Source
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
But my code to work with it is
Can the user supply their own base_url / api_base, to point to their own OpenAI-API compatible endpoint?
No, not without substantial code update. But it is a good idea to break a vendor lock.
How did you design this in a way that it would require a "substantial update" to swap out the API URL? It should be as easy as setting an environmental variable. There are many LLM providers and local LLMs that support the openAI API schema.
I meant that I use OpenAI's web_search tool for the app, changing that is not difficult but would require testing after he fact. Changing LLMs for summarizers, outliners and final report is just few lines of code, especially if the providers use OpenAI formate, and should be easy also test-wise.
I am now working on implementing "tavily" search tool in addition to web_search by OpenAI. The app will default to "tavily" when valid api key is provided by the client.
How does it compare with GPT Researcher?
I need to study the repo, but the first thing I can say is that mine is in JS.
Edit: in addition, GPT researcher uses tavily for web search and mine uses web_search tool but OpenAI Edit-2: added optin with "tavily" into my app as weel