martian-python 1.5.3

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

martianpython 1.5.3

Martian Python API library
The Martin Python library is a drop in replacement for OpenAI package
Documentation
The API documentation can be found here.
Installation
pip install martian-python

Usage
from martian import OpenAI

client = OpenAI(
api_key="My MARTIAN Key", # defaults to os.environ.get("MARTIAN_API_KEY")
)

chat_completion = client.chat.completions.create(
messages=[
{
"role": "user",
"content": "Say this is a test",
}
],
model="router",
# If more than one model is specified, the router chooses the best among them
# model=["gpt-3.5-turbo", "claude-v1"]
)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.