Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ OPENROUTER_API_KEY=your_openrouter_api_key

```bash
# Instalar dependencias de Python
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Iniciar el servidor API
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ OLLAMA_HOST=votre_hote_ollama

```bash
# Installer dépendances Python
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Démarrer le serveur API
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ OPENROUTER_API_KEY=your_openrouter_api_key

```bash
# Pythonの依存関係をインストール
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# APIサーバーを起動
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ OPENROUTER_API_KEY=your_openrouter_api_key

```bash
# Python 의존성 설치
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# API 서버 실행
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ OLLAMA_HOST=your_ollama_host

```bash
# Install Python dependencies
python -m pip install poetry==1.8.2 && poetry install -C api
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Start the API server
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ OLLAMA_HOST=seu_host_ollama

```bash
# Instale as dependências Python
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Inicie o servidor API
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ OLLAMA_HOST=ваш_ollama_host

```bash
# Установка зависимостей
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Запуск API
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.vi.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ OPENROUTER_API_KEY=your_openrouter_api_key

```bash
# Cài đặt Python dependencies
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# Chạy API server
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ OLLAMA_HOST=your_ollama_host

```bash
# 安裝 Python 相依性
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# 啟動 API 伺服器
python -m api.main
Expand Down
2 changes: 1 addition & 1 deletion README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ OPENROUTER_API_KEY=your_openrouter_api_key

```bash
# 安装Python依赖
python -m pip install poetry==2.0.1 && poetry install
python -m pip install poetry==2.0.1 && poetry install -C api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve clarity and avoid potential issues on systems where python might refer to Python 2, it's a good practice to explicitly use python3 in installation commands. This ensures the correct Python version is used, aligning with modern Python development practices.

Suggested change
python -m pip install poetry==2.0.1 && poetry install -C api
python3 -m pip install poetry==2.0.1 && poetry install -C api


# 启动API服务器
python -m api.main
Expand Down