init: project scaffold
This commit is contained in:
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.production
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
.DS_Store
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.log
|
||||||
16
.memory/source-analysis.md
Normal file
16
.memory/source-analysis.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# ARES 源码解析(withmartian RL Agent 训练框架) 源码解析
|
||||||
|
|
||||||
|
> 创建日期:2026-04-24
|
||||||
|
> 上游版本:待填写
|
||||||
|
|
||||||
|
## 概览
|
||||||
|
|
||||||
|
待补充
|
||||||
|
|
||||||
|
## 核心模块
|
||||||
|
|
||||||
|
待补充
|
||||||
|
|
||||||
|
## 关键流程
|
||||||
|
|
||||||
|
待补充
|
||||||
11
.memory/worklog.json
Normal file
11
.memory/worklog.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"ts": "2026-04-24T00:00:00+08:00",
|
||||||
|
"type": "milestone",
|
||||||
|
"message": "项目创建: ARES 源码解析(withmartian RL Agent 训练框架)",
|
||||||
|
"hash": "",
|
||||||
|
"files_changed": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
30
.project.json
Normal file
30
.project.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "ARES 源码解析(withmartian RL Agent 训练框架)",
|
||||||
|
"description": "withmartian/ares RL-first LLM Agent 训练与评估框架全面源码解析:Agent runtime(沙箱/工具/观察/任务)+ RL 训练接口(reward/rollout/gymnasium 协议)两半都深入,带 file:line 证据",
|
||||||
|
"status": "active",
|
||||||
|
"kind": "analysis",
|
||||||
|
"created": "2026-04-24",
|
||||||
|
"ports": [
|
||||||
|
{
|
||||||
|
"port": 4510,
|
||||||
|
"label": "dev",
|
||||||
|
"fixed": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"worklog": {
|
||||||
|
"path": ".memory/worklog.json",
|
||||||
|
"auto": true
|
||||||
|
},
|
||||||
|
"ownership": "personal",
|
||||||
|
"source": {
|
||||||
|
"upstream": "https://github.com/withmartian/ares.git",
|
||||||
|
"path": "source/",
|
||||||
|
"last_sync": "2026-04-24",
|
||||||
|
"version": "c804aa2"
|
||||||
|
},
|
||||||
|
"analysis": {
|
||||||
|
"path": ".memory/source-analysis.md",
|
||||||
|
"version": "c804aa2",
|
||||||
|
"last_updated": "2026-04-24"
|
||||||
|
}
|
||||||
|
}
|
||||||
17
RULES.md
Normal file
17
RULES.md
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# ARES 源码解析(withmartian RL Agent 训练框架)
|
||||||
|
|
||||||
|
## 启动
|
||||||
|
- `python3 -m http.server 4510` — 端口 4510
|
||||||
|
|
||||||
|
## 部署
|
||||||
|
- 平台:待定
|
||||||
|
- 域名:待定
|
||||||
|
|
||||||
|
## 环境变量
|
||||||
|
- 待补充
|
||||||
|
|
||||||
|
## 规则
|
||||||
|
- 待补充
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
- 待补充
|
||||||
46
index.html
Normal file
46
index.html
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>ARES 源码解析(withmartian RL Agent 训练框架)</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||||
|
background: #0a0a0a; color: #e0e0e0;
|
||||||
|
min-height: 100vh; padding: 2rem;
|
||||||
|
}
|
||||||
|
.container { max-width: 1200px; margin: 0 auto; }
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5rem; font-weight: 700;
|
||||||
|
background: linear-gradient(135deg, #60a5fa, #a78bfa);
|
||||||
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
.subtitle { color: #888; font-size: 1.1rem; margin-bottom: 2rem; }
|
||||||
|
.card {
|
||||||
|
background: #141414; border: 1px solid #222; border-radius: 12px;
|
||||||
|
padding: 2rem; margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
.card h2 { color: #60a5fa; margin-bottom: 1rem; font-size: 1.3rem; }
|
||||||
|
.card p { line-height: 1.8; color: #aaa; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h1>ARES 源码解析(withmartian RL Agent 训练框架)</h1>
|
||||||
|
<p class="subtitle">withmartian/ares RL-first LLM Agent 训练与评估框架全面源码解析:Agent runtime(沙箱/工具/观察/任务)+ RL 训练接口(reward/rollout/gymnasium 协议)两半都深入,带 file:line 证据</p>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<h2>概述</h2>
|
||||||
|
<p>待补充研究内容...</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<h2>核心发现</h2>
|
||||||
|
<p>待补充...</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
1
source
Submodule
1
source
Submodule
Submodule source added at c804aa22cb
Reference in New Issue
Block a user