Spaces:
Running
Running
Update Github link
Browse files- README.md +2 -2
- README_zh.md +2 -2
- app.py +1 -1
README.md
CHANGED
@@ -16,7 +16,7 @@ license: "mit"
|
|
16 |
---
|
17 |
|
18 |
# CoT-Lab: Human-AI Co-Thinking Laboratory
|
19 |
-
[Huggingface Spaces 🤗](https://huggingface.co/spaces/Intelligent-Internet/CoT-Lab) | [GitHub Repository 🌐](https://github.com/Intelligent-Internet/CoT-Lab)
|
20 |
[中文README](README_zh.md)
|
21 |
|
22 |
**Sync your thinking with AI reasoning models to achieve deeper cognitive alignment**
|
@@ -64,7 +64,7 @@ Local deployment is (currently) required if you want to work with locally hosted
|
|
64 |
|
65 |
```bash
|
66 |
# Clone repository
|
67 |
-
git clone https://github.com/Intelligent-Internet/CoT-Lab
|
68 |
cd CoT-Lab
|
69 |
|
70 |
# Install dependencies
|
|
|
16 |
---
|
17 |
|
18 |
# CoT-Lab: Human-AI Co-Thinking Laboratory
|
19 |
+
[Huggingface Spaces 🤗](https://huggingface.co/spaces/Intelligent-Internet/CoT-Lab) | [GitHub Repository 🌐](https://github.com/Intelligent-Internet/CoT-Lab-Demo)
|
20 |
[中文README](README_zh.md)
|
21 |
|
22 |
**Sync your thinking with AI reasoning models to achieve deeper cognitive alignment**
|
|
|
64 |
|
65 |
```bash
|
66 |
# Clone repository
|
67 |
+
git clone https://github.com/Intelligent-Internet/CoT-Lab-Demo
|
68 |
cd CoT-Lab
|
69 |
|
70 |
# Install dependencies
|
README_zh.md
CHANGED
@@ -16,7 +16,7 @@ license: "mit"
|
|
16 |
---
|
17 |
|
18 |
# CoT-Lab: 人机协同思考实验室
|
19 |
-
[Huggingface空间 🤗](https://huggingface.co/spaces/Intelligent-Internet/CoT-Lab) | [GitHub仓库 🌐](https://github.com/Intelligent-Internet/CoT-Lab)
|
20 |
[English README](README.md)
|
21 |
|
22 |
**通过同步人类与AI的思考过程,实现深层次的认知对齐**
|
@@ -63,7 +63,7 @@ CoT-Lab是一个探索人机协作新范式的实验性界面,基于**认知
|
|
63 |
|
64 |
```bash
|
65 |
# 克隆仓库
|
66 |
-
git clone https://github.com/Intelligent-Internet/CoT-Lab
|
67 |
cd CoT-Lab
|
68 |
|
69 |
# 安装依赖
|
|
|
16 |
---
|
17 |
|
18 |
# CoT-Lab: 人机协同思考实验室
|
19 |
+
[Huggingface空间 🤗](https://huggingface.co/spaces/Intelligent-Internet/CoT-Lab) | [GitHub仓库 🌐](https://github.com/Intelligent-Internet/CoT-Lab-Demo)
|
20 |
[English README](README.md)
|
21 |
|
22 |
**通过同步人类与AI的思考过程,实现深层次的认知对齐**
|
|
|
63 |
|
64 |
```bash
|
65 |
# 克隆仓库
|
66 |
+
git clone https://github.com/Intelligent-Internet/CoT-Lab-Demo
|
67 |
cd CoT-Lab
|
68 |
|
69 |
# 安装依赖
|
app.py
CHANGED
@@ -199,7 +199,7 @@ with gr.Blocks(theme=theme, css_paths="styles.css") as demo:
|
|
199 |
dynamic_state = gr.State(DynamicState) # DynamicState is now a separate state
|
200 |
|
201 |
with gr.Row(variant=""):
|
202 |
-
title_md = gr.Markdown(f"## {LANGUAGE_CONFIG['en']['title']}", container=False)
|
203 |
lang_selector = gr.Dropdown(
|
204 |
choices=["en", "zh"],
|
205 |
value="en",
|
|
|
199 |
dynamic_state = gr.State(DynamicState) # DynamicState is now a separate state
|
200 |
|
201 |
with gr.Row(variant=""):
|
202 |
+
title_md = gr.Markdown(f"## {LANGUAGE_CONFIG['en']['title']} \n GitHub: https://github.com/Intelligent-Internet/CoT-Lab-Demo", container=False)
|
203 |
lang_selector = gr.Dropdown(
|
204 |
choices=["en", "zh"],
|
205 |
value="en",
|