IJAI
IJAI is a modular AI assistant that supports text and voice interactions using LLM, STT, and TTS models. It features a customizable GUI, plugin system, and manages its own project files and assets safely within user permissions. The project structure organizes models, configs, scripts, and tests for easy development and expansion.
File Explorer
- launch.cpython-312.pyc
- .gitkeep
- IJAI-logo.png
- ChartCard.js
- DataTable.js
- Header.js
- Sidebar.js
- dashboard.css
- material.css
- index.html
- renderer.js
- electron-builder.yml
- forge.config.js
- main.js
- package.json
- preload.js
- README.md
- CLI.cpython-312.pyc
- CLI.py
- installer.sh
- README
- doc.md
- doc.md
- doc.md
- doc.md
- articles_names.txt
- doc.md
- book1.txt
- .gitkeep
- .gitkeep
- book1.txt
- README.md
- important.jl
- magnificent.asm
- README
- #U0422#U0435#U043a#U0441#U0442#U043e#U0432#U044b#U0439 #U0434#U043e#U043a#U0443#U043c#U0435#U043d#U0442.txt
- Текстовый документ.txt
- assistant.conf.yaml
- models.conf.json
- policies.yaml
- CLI_enhanced.png
- CLIv2.png
- ijai.jpg
- QR.png
- codellama.py
- installer.sh
- README.md
- deepseekr1.py
- installer.sh
- README.md
- __init__.py
- config.json
- Falcon.py
- falconusage.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- gemma.py
- gemmausage.py
- README.md
- testgemma.py
- tokinizer.json
- .gitkeep
- __init__.py
- README
- __init__.py
- add_info.md
- gptneo.py
- gptneousage.py
- merges.txt
- special_tokens_map.json
- tokenizer.json
- tokenizer_config.json
- vocab.json
- __init__.py
- config.json
- neox20b.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- gpt2m.py
- gpt2musage.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- llama2.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- mistral.py
- mistralusage.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- MPT.py
- mptusage.py
- README.md
- tokinizer.json
- __init__.py
- DISCLAIMER.md
- installer.sh
- llm3.py
- README.md
- __init__.py
- config.json
- OPT.py
- optusage.py
- README.md
- tokinizer.json
- __init__.py
- added_tokens.json
- AUTHOR_README.md
- CODE_OF_CONDUCT.md
- config.json
- configuration_phi3.py
- generation_config.json
- LICENSE
- model.safetensors.index.json
- modeling_phi3.py
- NOTICE.md
- phi3usage.py
- README.md
- sample_finetune.py
- SECURITY.md
- special_tokens_map.json
- tokenizer.json
- tokenizer.model
- tokenizer_config.json
- __init__.py
- config.json
- qwen.py
- Qwenusage.py
- README.md
- tokinizer.json
- __init__.py
- config.json
- README.md
- SLM.py
- SLMusage.py
- tokinizer.json
- __init__.py
- config.json
- README.md
- tokinizer.json
- yi6b.py
- yiusage.py
- README.md
- __init__.py
- coqui_stt.py
- .gitkeep
- .gitkeep
- .gitkeep
- __init__.py
- README.md
- silero_stt.py
- ,gitkeep
- __init__.py
- __init__.py
- README.md
- whisper_test.py
- whispermedium.py
- __init__.py
- config.json
- preprocessor_config.json
- tokenizer.json
- whismall.py
- whisper-small.py
- __init__.py
- edgetts.py
- .gitkeep
- __init__.py
- __init__.py
- #U0422#U0435#U043a#U0441#U0442#U043e#U0432#U044b#U0439 #U0434#U043e#U043a#U0443#U043c#U0435#U043d#U0442.txt
- Текстовый документ.txt
- bunch.py
- manifest.json
- openapi.yaml
- #U0422#U0435#U043a#U0441#U0442#U043e#U0432#U044b#U0439 #U0434#U043e#U043a#U0443#U043c#U0435#U043d#U0442.txt
- Текстовый документ.txt
- index.html
- photo.png
- README.md
- .gitignore
- CODE_OF_CONDUCT.md
- COMMERCIAL-LICENSE.md
- CONTRIBUTING.md
- Dockerfile
- installer.sh
- launch.py
- LICENSE
- README.md
- requirements.txt
- run.bat
- run.sh
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm start
View Details ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
