Getting Started
Prerequisites
Installation
pip install auxknowQuickstart
from auxknow import AuxKnow
# Initialize the AuxKnow instance
auxknow = AuxKnow(api_key="your_api_key", openai_api_key="your_openai_api_key")
# Ask a question
response = auxknow.ask("What is the theory of evolution?")
# Print the answer
print("Answer:", response.answer)
print("Citations:", response.citations)Local Setup
Clone the Repository
Install Dependencies
Install the Package
Run the Project
Last updated