from openai import OpenAI
Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'OpenAI' from 'openai'
If so where is the current documentation?
131–140 of 561 posts
from openai import OpenAI
Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'OpenAI' from 'openai'
If so where is the current documentation?
JSON mode is a great step in the right direction, but the holy grail is either JSON-schema support or (E)BNF grammar specification.
Earlier quoted context omitted.
I haven't been paying attention, why are embeddings not needed anymore?
OP is incorrect. Embeddings are still needed since (1) context windows can't contain all data and (2) data memorization and continuous retraining is not yet viable.
This is kind of the wrong place for this, but given the burst of attention from LLM-loving people: is there any open source chat scaffolding that actually provides a good UI for organizing chat streams and doing stuff with them? A trivial example is how the LHS of the ChatGPT UI only allows you a handful of characters to name your chat, and you can't even drag the pane to the right to make it bigger; so I have all th…
The 128k context window GPT-4 Turbo model looks unreal. Seems like Anthropic's day of reckoning is here?
This is kind of the wrong place for this, but given the burst of attention from LLM-loving people: is there any open source chat scaffolding that actually provides a good UI for organizing chat streams and doing stuff with them? A trivial example is how the LHS of the ChatGPT UI only allows you a handful of characters to name your chat, and you can't even drag the pane to the right to make it bigger; so I have all th…
Organize how?
This is kind of the wrong place for this, but given the burst of attention from LLM-loving people: is there any open source chat scaffolding that actually provides a good UI for organizing chat streams and doing stuff with them? A trivial example is how the LHS of the ChatGPT UI only allows you a handful of characters to name your chat, and you can't even drag the pane to the right to make it bigger; so I have all th…
The first that comes to mind: https://chrome.google.com/webstore/detail/superpower-chatgpt...
Earlier quoted context omitted.
OP is incorrect. Embeddings are still needed since (1) context windows can't contain all data and (2) data memorization and continuous retraining is not yet viable.
"yet"
Pre-search tokenization however, probably a good fit for LLMs.
So with 128K context window, if you actually input 100K it would cost you: Input: $0.01 per 1K tokens * 100 = $1.00 $1.00 per query? Given that each query uses the entire context window, the session would start at $1 for the first query and go up from there? Or do I have it wrong?