File size: 784 Bytes
b67af4a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Getting started

## Requirements
- Python 3.10+
- Internet connection

## Install
```bash

git clone https://github.com/mcdaqc/hugging-research

cd hugging-research

python -m venv venv

# Windows

venv\Scripts\activate

# macOS/Linux

# source venv/bin/activate

pip install -r requirements.txt

```

## Configure
Create `.env` (token is only for the inference model; tools are anonymous):
```ini

HF_TOKEN=hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

MODEL_ID=Qwen/Qwen3-Coder-480B-A35B-Instruct

```

## Run
```bash

python app.py

# open http://localhost:7860

```

## Notes for Spaces
- Set `HF_TOKEN` as a Space Secret if you want to choose a different inference model via `MODEL_ID`.
- Tools never use tokens; private/gated items will be marked as not accessible.