Skip to main content

Python langchain-like client library for the Rebyte API

Project description

rebyte-langchain

PyPI readthedocs License

rebyte-langchain is a Python library to access the ReByte Agent REST API. This library enables you to use rebyte in a langchain-like style.

Features

  1. Generate streaming or non-streaming output.
  2. Use async or sync method.
  3. Compatiable with langchain callback functions.
  4. Support stateful agent memory with session_id.

Install

pip install rebyte-langchain

Simple Demo

# import packages
from rebyte_langchain.rebyte_langchain import RebyteEndpoint
import os
import asyncio
from langchain.schema.messages import HumanMessage
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler

# required keys & config
# You can set REBYTE_API_KEY as an environment variable 
os.environ['REBYTE_API_KEY'] = "<rebyte_api_key>"
# Or pass it as an argument to the RebyteEndpoint constructor
test_rebyte_api_key:str = "<rebyte_api_key>"

# create an agent on rebyte platform and get the project_id and agent_id
# https://rebyte.ai/api/sdk/p/{test_project_id}/a/{test_agent_id}/r
test_project_id:str = "<test_project_id>"
test_agent_id:str = "<test_agent_id>"

# You may use any string as session_id 
# Note that you must set session_id if you use any states ("memory") in your agent, such as KV storage. Otherwise, the agent will raise error
# Or you can leave it as None when the agent has no states. The system will generate a random session_id for you.
test_session_id:str = None

# test input
human_messages = [HumanMessage(content="Who are you")]

def generate(stream = False):
  model = RebyteEndpoint(
    rebyte_api_key=test_rebyte_api_key,
    project_id=test_project_id,
    agent_id=test_agent_id,
    session_id=test_session_id,
    streaming=stream
  )
  response = model.generate([human_messages],
                            callbacks=[StreamingStdOutCallbackHandler()]
                            )
  return response

async def agenerate(stream = False):
  model = RebyteEndpoint(
    rebyte_api_key=test_rebyte_api_key,
    project_id=test_project_id,
    agent_id=test_agent_id,
    session_id=test_session_id,
    streaming=stream
  )
  response = await model.agenerate(messages=
                                   [human_messages],
                                   callbacks=[StreamingStdOutCallbackHandler()]
                                   )
  return response

if __name__ == "__main__":
  print("\n\nTEST GENERATE\n\n")
  response = generate(stream=True)

  print("\n\nTEST AGENERATE\n\n")
  loop = asyncio.get_event_loop()
  loop.run_until_complete(agenerate(stream=True))

Please see more examples in main.py and example.ipynb.

Documentation

More information can be found on the ReByte Documentation Site.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rebyte_langchain-0.0.5.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rebyte_langchain-0.0.5-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file rebyte_langchain-0.0.5.tar.gz.

File metadata

  • Download URL: rebyte_langchain-0.0.5.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for rebyte_langchain-0.0.5.tar.gz
Algorithm Hash digest
SHA256 89b04f863e7451a003781927f1b286e52fd0627dc2bd85099f270cb494f1fb09
MD5 0a07a456da6f03a5fad67b2c6173b08e
BLAKE2b-256 e1b141fb69f600eabbb7d8169666342bef174afe6548f503db64e6e767840a48

See more details on using hashes here.

File details

Details for the file rebyte_langchain-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for rebyte_langchain-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e4c87a5d13450c8c1cba609432ad28030b5fff9fcbcff406c795b185b2bc609b
MD5 e035cc513bdcaaa649d140262dcfdf22
BLAKE2b-256 c26a74d3042cae797e318ca6d25691c00469311650a5cf0237d11e527bc61c28

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page