Metadata-Version: 2.1
Name: wasimtest
Version: 0.1.26
Summary: SDK for Falcon AI.
Home-page: https://bitbucket.org/northbay/generative_ai/
Author: Falcon
Author-email: wasim.khan@northbaysolutions.net
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: httpx
Provides-Extra: test
Requires-Dist: nose; extra == "test"

=========
falconai
=========

SDK for Falcon AI.

|pypi|

.. |pypi| image:: https://badge.fury.io/py/falconai.svg
   :target: https://badge.fury.io/py/falconai
   :alt: PyPI version and link.

Purpose
-------
The `falconai` SDK is designed to provide developers with a streamlined way to interface with Falcon AI's services. This SDK simplifies the process of making requests to various Falcon AI endpoints, enabling developers to focus on integrating AI capabilities without worrying about underlying API details.

Package Installation and Usage
------------------------------
The SDK is available on PyPI::

    python -m pip install falconai

After installation, the SDK can be imported and utilized as follows::

    from falconai import falconai
    result = falconai.chat(query="Hello Falcon AI!")
