Skip to content

Commit 218935e

Browse files
authored
fix file url for func call ops (#155)
1 parent 4101d30 commit 218935e

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/en/notes/guide/domain_specific_operators/funccall_operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permalink: /en/guide/qdq6vy95/
1010

1111
Function call data synthesis operators are designed to synthesize structured function call data from dialogues or real-world task descriptions. These operators cover scenario extraction and expansion, task generation and validation, function generation, and multi-agent multi-turn conversation generation.
1212

13-
All related operators are located in [dataflow/operators/conversations/func_call_operators.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/func_call_operators.py). The table below summarizes their applicable scenarios:
13+
All related operators are located in [dataflow/operators/conversations/](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/). The table below summarizes their applicable scenarios:
1414

1515
<table class="tg">
1616
<thead>
@@ -249,4 +249,4 @@ Simulates multi-turn conversations involving User, Assistant, and Tool agents to
249249

250250
---
251251

252-
For code examples, refer to the [Function Call Data Synthesis Pipeline](https://opendcai.github.io/DataFlow-Doc/en/guide/e6kz1s79/) or the [GitHub source file](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/func_call_operators.py).
252+
For code examples, refer to the [Function Call Data Synthesis Pipeline](https://opendcai.github.io/DataFlow-Doc/en/guide/e6kz1s79/) or the [GitHub source file](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/).

docs/en/notes/guide/quickstart/quick_general_text_evaluation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ After running, the pipeline will invoke `MetaScorer`, which multi-dimensional da
8484
* `description`: Detailed description of the dimension
8585
* `example_list`: List of examples, where each follows a format like `{"text": "some text", "score": 1}`
8686

87-
The dimensions used in the sample pipeline are listed in [dataflow/operators/eval/GeneralText/APIcaller/meta\_scorer.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py):
87+
The dimensions used in the sample pipeline are listed in [dataflow/operators/text_pt/eval/meta_sample_evaluator.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/text_pt/eval/meta_sample_evaluator.py):
8888

8989
```python
9090
example_dimensions = [
@@ -179,7 +179,7 @@ example_dimensions = [
179179

180180
The full implementation of the operator is located in the following files:
181181

182-
* [dataflow/operators/eval/GeneralText/APIcaller/meta\_scorer.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py)
182+
* [dataflow/operators/text_pt/eval/meta_sample_evaluator.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/text_pt/eval/meta_sample_evaluator.py)
183183

184184

185185
### Output

docs/zh/notes/guide/domain_specific_operators/funccall_operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permalink: /zh/guide/kgdzd34m/
88

99
## 概述
1010

11-
函数调用数据合成算子是专门用于从对话或现实场景合成函数调用数据的算子集合,这些算子主要包括了真实任务场景的提取和生成,任务的生成与验证,函数生成,多智能体多轮对话生成等功能。这些算子位于[dataflow/operators/conversations/func_call_operators.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/func_call_operators.py)文件中,其适用场景可以参考下面的表格:
11+
函数调用数据合成算子是专门用于从对话或现实场景合成函数调用数据的算子集合,这些算子主要包括了真实任务场景的提取和生成,任务的生成与验证,函数生成,多智能体多轮对话生成等功能。这些算子位于[dataflow/operators/conversations](https://github.com/OpenDCAI/DataFlow/tree/main/dataflow/operators/conversations)文件夹中,其适用场景可以参考下面的表格:
1212

1313
<table class="tg">
1414
<thead>
@@ -244,4 +244,4 @@ permalink: /zh/guide/kgdzd34m/
244244
- 多智能体对话模拟
245245
- 支持函数嵌入与调用结构
246246

247-
算子的示例代码请参考文档[函数调用数据合成流水线](https://opendcai.github.io/DataFlow-Doc/zh/guide/hy4417i0/)[GitHub仓库](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/func_call_operators.py)
247+
算子的示例代码请参考文档[函数调用数据合成流水线](https://opendcai.github.io/DataFlow-Doc/zh/guide/hy4417i0/)[GitHub仓库](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/conversations/)

docs/zh/notes/guide/quickstart/quick_general_text_evaluation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ python quick_evaluate.py
6666
* `description`: 维度的具体描述
6767
* `example_list`: 示例列表,其中每个示例都遵循类似于`{"text": "some text", "score": 1}`的字典格式。
6868

69-
下面是示例流水线中用到的维度列表,位于[dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py)中:
69+
下面是示例流水线中用到的维度列表,位于[dataflow/operators/text_pt/eval/meta_sample_evaluator.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/text_pt/eval/meta_sample_evaluator.py)中:
7070
```python
7171
example_dimensions = [
7272
{
@@ -157,7 +157,7 @@ example_dimensions = [
157157
```
158158

159159
### 算子逻辑
160-
算子的完整实现位于[dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/eval/GeneralText/APIcaller/meta_scorer.py)文件中。
160+
算子的完整实现位于[dataflow/operators/text_pt/eval/meta_sample_evaluator.py](https://github.com/OpenDCAI/DataFlow/blob/main/dataflow/operators/text_pt/eval/meta_sample_evaluator.py)文件中。
161161

162162
### 输出
163163
运行脚本执行完毕后,可在工作区的`playground/cache/`文件夹下观察到脚本的运行结果,下面是示例数据中的一个例子

0 commit comments

Comments
 (0)