Skip to content

Commit

Permalink
added scrape_type
Browse files Browse the repository at this point in the history
  • Loading branch information
glorenzo972 committed Jun 6, 2024
1 parent fd8c012 commit 18c1484
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
*Andrea Sponziello*
### **Copyrigth**: *Tiledesk SRL*

## [2024-06-06]
### 0.1.20
- added: log_conf.json

## [2024-06-06]

### 0.1.19
Expand Down
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# npm version patch
version="0.1.18"
version="0.1.20"
echo "version $version"

if [ "$version" != "" ]; then
Expand Down
41 changes: 41 additions & 0 deletions log_conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"loggers": {
"myapp": {
"level": "DEBUG",
"propagate": false,
"handlers": [
"stdout",
"stderr"
]
}
},
"version": 1,
"disable_existing_loggers": false,
"handlers": {
"stdout": {
"formatter": "simple",
"class": "logging.StreamHandler",
"stream": "ext://sys.stdout",
"level": "DEBUG"
},
"stderr": {
"level": "ERROR",
"formatter": "simple",
"class": "logging.StreamHandler",
"stream": "ext://sys.stderr"
}
},

"root": {
"level": "INFO",
"handlers": [
"stdout","stderr"
],
"propagate": false
},
"formatters": {
"simple": {
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
}
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tilellm"
version = "0.1.19"
version = "0.1.20"
description = "tiledesk for RAG"
authors = ["Gianluca Lorenzo <[email protected]>"]
repository = "https://github.com/Tiledesk/tiledesk-llm"
Expand Down

0 comments on commit 18c1484

Please sign in to comment.