jivas is an Agentic Framework for rapidly prototyping and deploying graph-based, AI solutions.
To install jivas, use pip:
pip install jivasTo use jivas, you can start the framework with the following command:
jac jvserve <path-to-your-jac-file>For example:
jac jvserve main.jac--host: The host to run the server on. Default is `--port: The port to run the server on. Default is8000.--loglevel: The logging level to use. Default isINFO.
Example with all arguments:
jac jvserve main.jac --host 0.0.0.0 --port 8000 --loglevel DEBUG- Interact with Agent:
/interact(POST) - Execute Webhook:
/webhook/{key}(GET, POST) - Execute Action Walker:
/action/walker(POST)
You can see all endpoints at the URL /docs.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
jivasproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your GitHub account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/TrueSelph/jivas
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to GitHub: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the Apache License 2.0. See LICENSE for more information.
Since jivas is a framework for AI solutions, it supports various integrations and extensions. You can find more information about its capabilities and extensions in the official documentation.