client for AICosmos platform
Project description
Client for AICosmos
This package implements the client for AICosmos. Before using this package, please make sure that you have a valid account for AICosmos.
Login & Create Session
By using this client, you can chat with our backend in "base" mode. To login, you will need the server's address and your API key. Our conversation system is based on sessions, you can either start a new session, or continue with an existing one.
from aicosmos_client.client import AICosmosClient
# Login
client = AICosmosClient(
base_url="https://aicosmos.ai/api", api_key="xxx"
)
# Create a new session
try:
new_session_id = client.create_session()
except Exception as e:
print(f"Error creating new session: {e}")
exit(0)
# Check all existing sessions
try:
my_sessions = client.get_my_sessions()
except Exception as e:
print(f"Error getting my sessions: {e}")
exit(0)
# [{"session_id", "title"}, ...]
print(my_sessions)
Chatting
Our framework is different from "chat completions", where you give an llm the conversation history. Instead, your conversation history, along with other tool execution results, are stored in our database. This gives you a clean and simple interface to use, without worrying about constructing complicated contexts. The following code starts a new conversation in "base" mode. We support both stream and non-stream responses.
Non-Stream Response
In this case, you only need to submit your prompt. The whole conversation history is returned.
# prompt = "Hello"
try:
conversation_history = client.chat(session_id, prompt)
except Exception as e:
print(f"Error chatting: {e}")
exit(0)
print(conversation_history)
Stream Response
In this scenario, our server only returns the diff between current history and old history. There are two types of diffs:
- added: a new item is added into conversation history
- updated: certain fields of existing history has changed
The diffs are very intuitive. You can track the conversation history dinamically using them:
# get existing conversation history
tracked_history = client.get_session_history(session)
for diff in client.chat_stream(
session_id,
prompt,
):
# add new items
for add in diff["added"]:
index = add["index"]
item = add["item"]
tracked_history.append(item)
# update existing items
for update in diff["updated"]:
index = update["index"]
field = update["field"]
# new_suffix is a string
new_suffix = update["new_suffix"]
if field in tracked_history[index].keys():
tracked_history[index][field] += new_suffix
else:
tracked_history[index] = new_suffix
# now `tracked_history` is up to date!
File Upload & Download
To upload a file to current session, just provide session id and local file path:
client.upload_file(session_id, "./my_file.txt")
To download an uploaded file, just provide session id, filename and where you want to save it.
client.download_file(session_id, "my_file.txt", "./my_local_path.txt")
Other Modes
Apart from "base" mode, we also support "code" mode and "lean" mode. In these modes, we provide you with a web code editor, which you can open and interact with your web browser.
try:
conversation_history = client.chat(
new_session_id, "De Morgan's law. Start now.", mode="lean"
)
except Exception as e:
print(f"Error chatting: {e}")
exit(0)
print(conversation_history)
# open this link with your web browser (e.g. Edge, Chrome)
url = client.get_browser_url(new_session_id)
print(url)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aicosmos_client-0.0.16.tar.gz.
File metadata
- Download URL: aicosmos_client-0.0.16.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c51a2213318ff7bf4a114e56837dbecb51522b6f24de81f9aca859d688d2bad
|
|
| MD5 |
ff38b7e8aa3b0a9cafab442dd47a0abb
|
|
| BLAKE2b-256 |
e1ee2e1f7fcd4acc5a131e85701b42672109c6bbae3fce4a0b4686a79826eb55
|
File details
Details for the file aicosmos_client-0.0.16-py3-none-any.whl.
File metadata
- Download URL: aicosmos_client-0.0.16-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f8b569b564d4d9872b46495bc0c8e977a0cfbb488310ceeda6cd170f0786da9
|
|
| MD5 |
210c3f937ba7400c0146754b15fd9c75
|
|
| BLAKE2b-256 |
572ad319bbc093f2f90a65f790ce2b924628689f0b4118e26cff898ca88d8b34
|