Skip to content

Commit 7d2d81f

Browse files
committed
Added missing periods.
1 parent 1de7c64 commit 7d2d81f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/create_provider.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ python -m etc.tool.create_provider
1212
#### Create Provider
1313

1414
1. Check out the current [list of potential providers](https://github.com/zukixa/cool-ai-stuff#ai-chat-websites), or find your own provider source!
15-
2. Create a new file in [g4f/Provider](/g4f/Provider) with the name of the Provider
15+
2. Create a new file in [g4f/Provider](/g4f/Provider) with the name of the Provider.
1616
3. Implement a class that extends [BaseProvider](/g4f/providers/base_provider.py).
1717

1818
```py
@@ -38,7 +38,7 @@ class HogeService(AsyncGeneratorProvider):
3838
```
3939

4040
4. Here, you can adjust the settings, for example, if the website does support streaming, set `supports_stream` to `True`...
41-
5. Write code to request the provider in `create_async_generator` and `yield` the response, _even if_ it's a one-time response, do not hesitate to look at other providers for inspiration
41+
5. Write code to request the provider in `create_async_generator` and `yield` the response, _even if_ it's a one-time response, do not hesitate to look at other providers for inspiration.
4242
6. Add the Provider Import in [`g4f/Provider/__init__.py`](./g4f/Provider/__init__.py)
4343

4444
```py

0 commit comments

Comments
 (0)