mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-12 15:05:10 -05:00
### CHANGES - Introduce `cmd` directory for all main application binaries. - Move all Go packages into the `internal` directory. - Rename the `restapi` package to `server` for clarity. - Consolidate patterns and strategies into a new `data` directory. - Group all auxiliary scripts into a new `scripts` directory. - Move all documentation and images into a `docs` directory. - Update all Go import paths to reflect the new structure. - Adjust CI/CD workflows and build commands for new layout.
21 lines
330 B
YAML
21 lines
330 B
YAML
#this is an example yaml config file for fabric
|
|
|
|
# use fabric pattern names
|
|
pattern: ai
|
|
|
|
# or use a filename
|
|
# pattern: ~/testpattern.md
|
|
|
|
model: phi3:latest
|
|
|
|
# for models that support context length
|
|
modelContextLength: 2048
|
|
|
|
frequencypenalty: 0.5
|
|
presencepenalty: 0.5
|
|
topp: 0.67
|
|
temperature: 0.88
|
|
seed: 42
|
|
|
|
stream: true
|
|
raw: false |