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
These links don't work anymore. Two users have emailed us in the past
week due to confusion about them. This PR removes them from our SDK and
MCP code, as well as from our documentation.
Once we have a way to view SDK sessions within the app, we can add
expose session URLs again.
Sourced from commit ec00176767da07586db37fa57d05083cac141b3e
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,13 +163,14 @@ The same API researches, cleans, and joins datasets, which is often how a foreca
163
163
164
164
## Sessions
165
165
166
-
You can also use a session to output a URL to see the research and data processing in the [futuresearch.ai/app](https://futuresearch.ai/app) application, which streams the research and makes charts. Or you can use it purely as an intelligent data utility, and [chain intelligent pandas operations](https://futuresearch.ai/docs/chaining-operations) with normal pandas operations where LLMs are used to process every row.
166
+
Group related operations into a session so their tasks are tracked together. You can also use FutureSearch purely as an intelligent data utility, and [chain intelligent pandas operations](https://futuresearch.ai/docs/chaining-operations) with normal pandas operations where LLMs are used to process every row.
167
167
168
168
```python
169
169
from futuresearch import create_session
170
170
171
171
asyncwith create_session(name="My Session") as session:
0 commit comments