Skip to content

Commit

Permalink
Merge pull request #1 from nevermined-io/feat/task_logs
Browse files Browse the repository at this point in the history
Agent logs
  • Loading branch information
aaitor authored Nov 14, 2024
2 parents cca6eb0 + 4bacb35 commit b911b6a
Show file tree
Hide file tree
Showing 11 changed files with 396 additions and 220 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ web_modules/
.env.test.local
.env.production.local
.env.local

.env.*.sh
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-text2speech-js",
"version": "0.1.3",
"version": "0.1.4",
"description": "",
"private": true,
"author": "Nevermined <[email protected]>",
Expand All @@ -19,7 +19,7 @@
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@nevermined-io/payments": "0.6.1",
"@nevermined-io/payments": "0.7.1",
"openai": "4.68.4",
"ipfs-http-client-lite": "0.3.0",
"pino": "^8.15.4",
Expand Down
23 changes: 23 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'all',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'always',
overrides: [
{
files: '.editorconfig',
options: { parser: 'yaml' },
},
{
files: 'LICENSE',
options: { parser: 'markdown' },
},
],
}
Loading

0 comments on commit b911b6a

Please sign in to comment.