Metadata-Version: 2.1
Name: curious-me
Version: 0.1.0
Summary: Small project for aiding in research and development
Author: Ankit Kumar Pandey
Author-email: itsankitkp@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: arxiv (>=2.1.3,<3.0.0)
Requires-Dist: black (>=24.10.0,<25.0.0)
Requires-Dist: faiss-cpu (>=1.9.0.post1,<2.0.0)
Requires-Dist: ipython (>=8.31.0,<9.0.0)
Requires-Dist: ipywidgets (>=8.1.5,<9.0.0)
Requires-Dist: langchain (>=0.3.13,<0.4.0)
Requires-Dist: langchain-community (>=0.3.13,<0.4.0)
Requires-Dist: langchain-huggingface (>=0.1.2,<0.2.0)
Requires-Dist: langchain-openai (>=0.2.14,<0.3.0)
Requires-Dist: notebook (>=7.3.2,<8.0.0)
Requires-Dist: openai (>=1.58.1,<2.0.0)
Requires-Dist: pymupdf (>=1.25.1,<2.0.0)
Requires-Dist: sentence-transformers (>=3.3.1,<4.0.0)
Requires-Dist: torch (>=2.5.1,<3.0.0)
Requires-Dist: torchvision (>=0.20.1,<0.21.0)
Requires-Dist: tqdm (>=4.67.1,<5.0.0)
Description-Content-Type: text/markdown

# curious-me

# Installation
1. Clone the repository
```bash
git clone 
```
2. Create virtual environment and activate it
```bash
python -m venv venv
```
In Windows
```bash
venv\Scripts\activate
```
In Linux
```bash
source venv/bin/activate
```

3. Install package
```bash
cd curious_me/curious_me
pip install .
```
4. Run the application, first open python then run the following commands
```python
from curious_me import Curious
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(
            model_name="grok-2-1212",
            temperature=0.1,
            base_url="https://api.x.ai/v1",
            api_key=<your api key>,
        )

topics = ['GPT', 'LLM', 'Decoder', 'Artificial generative Intelligence']
curious = Curious(topics=topics, llm=llm)
curious.ask("What are recent advances in GPT?")
curious.get_review("RAG")
curious.get_citation(claim="Leaky ReLU is better than ReLU")
```

![Demo](https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExZ252MjM2MXl0NzY3eTF4NjRzNWthNHNkdHhwdHM3OGU0NzB6NzNzNiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/E10XlPvYkO3aXNYoEl/giphy.gif)
