Deploying to gh-pages from @ microsoft/graphrag@ee82e1143b 🚀

This commit is contained in:
darthtrevino 2024-04-04 22:43:43 +00:00
parent 8ae499fa09
commit e229c73e46
2 changed files with 3 additions and 3 deletions

View File

@ -370,7 +370,7 @@ a {
<td>The file pattern regexp to use when reading input files from the input directory.</td>
<td><code>str</code></td>
<td>optional</td>
<td><code>.*\.txt</code></td>
<td><code>.*\.txt$</code></td>
</tr>
</tbody>
</table>
@ -391,7 +391,7 @@ a {
<td>The file pattern regexp to use when reading input files from the input directory.</td>
<td><code>str</code></td>
<td>optional</td>
<td><code>.*\.csv</code></td>
<td><code>.*\.csv$</code></td>
</tr>
<tr>
<td><code>GRAPHRAG_INPUT_SOURCE_COLUMN</code></td>

View File

@ -355,7 +355,7 @@ API_KEY=some_api_key
<ul>
<li><code>type</code> <strong>text|csv</strong> - The type of input data to load. Either <code>text</code> or <code>csv</code>. Default is <code>csv</code></li>
<li><code>file_encoding</code> <strong>str</strong> - The encoding of the input file. Default is <code>utf-8</code></li>
<li><code>file_pattern</code> <strong>str</strong> - A glob pattern to match input files. Default is <code>**/*.csv</code> if in csv mode and <code>**/*.txt</code> if in text mode.</li>
<li><code>file_pattern</code> <strong>str</strong> - A regex to match input files. Default is <code>.*\.csv$</code> if in csv mode and <code>.*\.txt$</code> if in text mode.</li>
<li><code>source_column</code> <strong>str</strong> - (CSV Mode Only) The source column name.</li>
<li><code>timestamp_column</code> <strong>str</strong> - (CSV Mode Only) The timestamp column name.</li>
<li><code>timestamp_format</code> <strong>str</strong> - (CSV Mode Only) The source format.</li>