Advanced Reasoning
Using OramaCore to perform advanced reasoning tasks.
APIs
API Key type: read_api_key
. Safe to expose to the public.
OramaCore has a built-in Advanced Reasoning feature, that may be used to perform a bit more advanced tasks.
When performing an Answer Session, OramaCore will:
- Get the query from the user.
- Optimize it to perform the best possible search on your data.
- Determine what kind of search is best (full-text, hybrid, vector).
- Perform the search.
- Rank the results.
- Return the results to the user in prose.
With Advanced Reasoning, OramaCore takes a step forward and tries to understand the user's query in a more advanced way.
Under the hood, it uses a built-in library called Party Planner.
Party Planner will generate an action plan based on the user query, then will execute each step of the plan to get to the best possible answer.
Party Planner by Example
Let's see a couple of examples:
Example 1: Debugging errors in code
Let's make a trivial example. When asking OramaCore to help you debug an error in your code, you may say something like:
OramaCore may determine that in order to help you, it needs to:
- Describe the input code in natural language
- Generate one or more search queries based on the natural language description
- Determine what kind of search is best (full-text, hybrid, vector)
- Perform the search
- Rank the results
- Return the results to the user in prose
As you can imagine, this will lead to a much better answer than just performing raw search on the input query, which contains a lot of information that may not be relevant to the information retrieval process.
Example 2: Debugging a complex issue
Let's make a more complex example. When asking OramaCore to help you debug a complex issue, you may say something like:
OramaCore may determine that in order to help you, it needs to:
- Generate two optimized queries:
how to create a new collection
supported multilingual embeddings models
- For each query, determine what kind of search is best (full-text, hybrid, vector)
- Perform the search
- Rank the results
- Generate the code snippet
- Return the results to the user in prose
In the example above, OramaCore takes a slightly different route from the previous example, determining that it will also need to generate some code, validate it, and then send it to the user.
Advanced Reasoning APIs
Using Advanced Reasoning with OramaCore is not very different from performing Answer Sessions.
First of all, you have a to create a new answer session:
Just like any Answer Session, you can pass an optional configuration object to the createAnswerSession
method:
You can read more about events and state
structure here.
Performing an Advanced Reasoning Answer Session
Performing Advanced Reasoning Answer Sessions is very similar to performing regular Answer Sessions:
You can also stream the incoming tokens from the answer session:
Just like with a plain Answer Session, you will always have access to the state of the session via hooks:
Or by calling .state
:
In the example above, the console will log the following events:
-
First state change: a new interaction in the state. OramaCore generates an unique interaction ID and adds the user query to it.
-
Second state change: OramaCore comes up with a plan to answer the question. The plan is added to the current interaction. The plan is generated by Party Planner.
-
Third state change: OramaCore generates the sources and adds them to the interaction.
-
Fourth state chage: Orama generates the first response token:
-
Fifth state change: Orama generates the second response token:
OramaCore will continue to update the state and trigger the onStateChange
event until the full response is generated, and the state will look like this:
Generating related queries
When performing an answer session, you can ask OramaCore to generate some related queries to your question. This is useful if you want to explore the topic further, or if you want to ask follow-up questions.
OramaCore will use the user input and the context of the conversation to generate some related queries.
to do this, you can configure the answer
or answerStream
methods as follows:
Please note that the generated related queries are in the format of a JSON string. You can parse it using JSON.parse()
to get the actual array of queries.
The reason for this is that by streaming the JSON token by token, we can enable more interactive and real-time experiences, such as showing the user the generated queries as they are being generated.