Refactor project structure and implement new features
- Removed unused security module and updated import paths. - Enhanced OpenAI client with streaming capabilities for chat completions. - Added new backend API endpoints for health check (ping). - Established a new FastAPI application with CORS configuration. - Created a new Appshell component for the frontend with navigation links. - Integrated SVG icons and improved styling for the Appshell component. - Implemented memory management for conversation history using PostgreSQL. - Developed abstract classes for AI agents and models, with OpenAI integration. - Added encryption utilities for secure data handling.
This commit is contained in:
@@ -0,0 +1,961 @@
|
||||
E:\Fitz_Studio
|
||||
├── .git
|
||||
│ ├── COMMIT_EDITMSG
|
||||
│ ├── FETCH_HEAD
|
||||
│ ├── HEAD
|
||||
│ ├── ORIG_HEAD
|
||||
│ ├── config
|
||||
│ ├── description
|
||||
│ ├── hooks
|
||||
│ │ ├── applypatch-msg.sample
|
||||
│ │ ├── commit-msg.sample
|
||||
│ │ ├── fsmonitor-watchman.sample
|
||||
│ │ ├── post-update.sample
|
||||
│ │ ├── pre-applypatch.sample
|
||||
│ │ ├── pre-commit.sample
|
||||
│ │ ├── pre-merge-commit.sample
|
||||
│ │ ├── pre-push.sample
|
||||
│ │ ├── pre-rebase.sample
|
||||
│ │ ├── pre-receive.sample
|
||||
│ │ ├── prepare-commit-msg.sample
|
||||
│ │ ├── push-to-checkout.sample
|
||||
│ │ ├── sendemail-validate.sample
|
||||
│ │ └── update.sample
|
||||
│ ├── index
|
||||
│ ├── info
|
||||
│ │ └── exclude
|
||||
│ ├── logs
|
||||
│ │ ├── HEAD
|
||||
│ │ └── refs
|
||||
│ ├── objects
|
||||
│ │ ├── 00
|
||||
│ │ ├── 01
|
||||
│ │ ├── 04
|
||||
│ │ ├── 05
|
||||
│ │ ├── 06
|
||||
│ │ ├── 0a
|
||||
│ │ ├── 0b
|
||||
│ │ ├── 0c
|
||||
│ │ ├── 0e
|
||||
│ │ ├── 10
|
||||
│ │ ├── 11
|
||||
│ │ ├── 15
|
||||
│ │ ├── 17
|
||||
│ │ ├── 18
|
||||
│ │ ├── 19
|
||||
│ │ ├── 1a
|
||||
│ │ ├── 1b
|
||||
│ │ ├── 1d
|
||||
│ │ ├── 1f
|
||||
│ │ ├── 20
|
||||
│ │ ├── 23
|
||||
│ │ ├── 26
|
||||
│ │ ├── 27
|
||||
│ │ ├── 2c
|
||||
│ │ ├── 2d
|
||||
│ │ ├── 31
|
||||
│ │ ├── 33
|
||||
│ │ ├── 34
|
||||
│ │ ├── 39
|
||||
│ │ ├── 3c
|
||||
│ │ ├── 3d
|
||||
│ │ ├── 3f
|
||||
│ │ ├── 41
|
||||
│ │ ├── 42
|
||||
│ │ ├── 43
|
||||
│ │ ├── 47
|
||||
│ │ ├── 48
|
||||
│ │ ├── 4a
|
||||
│ │ ├── 4b
|
||||
│ │ ├── 4c
|
||||
│ │ ├── 4d
|
||||
│ │ ├── 4e
|
||||
│ │ ├── 4f
|
||||
│ │ ├── 51
|
||||
│ │ ├── 55
|
||||
│ │ ├── 57
|
||||
│ │ ├── 5b
|
||||
│ │ ├── 5c
|
||||
│ │ ├── 5d
|
||||
│ │ ├── 5e
|
||||
│ │ ├── 60
|
||||
│ │ ├── 61
|
||||
│ │ ├── 62
|
||||
│ │ ├── 63
|
||||
│ │ ├── 65
|
||||
│ │ ├── 67
|
||||
│ │ ├── 69
|
||||
│ │ ├── 6c
|
||||
│ │ ├── 6d
|
||||
│ │ ├── 6e
|
||||
│ │ ├── 70
|
||||
│ │ ├── 71
|
||||
│ │ ├── 74
|
||||
│ │ ├── 75
|
||||
│ │ ├── 76
|
||||
│ │ ├── 7b
|
||||
│ │ ├── 7c
|
||||
│ │ ├── 7d
|
||||
│ │ ├── 7f
|
||||
│ │ ├── 80
|
||||
│ │ ├── 81
|
||||
│ │ ├── 83
|
||||
│ │ ├── 84
|
||||
│ │ ├── 85
|
||||
│ │ ├── 87
|
||||
│ │ ├── 89
|
||||
│ │ ├── 8a
|
||||
│ │ ├── 8b
|
||||
│ │ ├── 94
|
||||
│ │ ├── 95
|
||||
│ │ ├── 97
|
||||
│ │ ├── 99
|
||||
│ │ ├── 9a
|
||||
│ │ ├── 9c
|
||||
│ │ ├── 9d
|
||||
│ │ ├── a2
|
||||
│ │ ├── a3
|
||||
│ │ ├── a4
|
||||
│ │ ├── a5
|
||||
│ │ ├── a6
|
||||
│ │ ├── a8
|
||||
│ │ ├── a9
|
||||
│ │ ├── aa
|
||||
│ │ ├── ab
|
||||
│ │ ├── ac
|
||||
│ │ ├── ad
|
||||
│ │ ├── ae
|
||||
│ │ ├── b1
|
||||
│ │ ├── b3
|
||||
│ │ ├── b4
|
||||
│ │ ├── b5
|
||||
│ │ ├── b6
|
||||
│ │ ├── b8
|
||||
│ │ ├── b9
|
||||
│ │ ├── ba
|
||||
│ │ ├── bb
|
||||
│ │ ├── bf
|
||||
│ │ ├── c0
|
||||
│ │ ├── c4
|
||||
│ │ ├── c6
|
||||
│ │ ├── c7
|
||||
│ │ ├── c9
|
||||
│ │ ├── cf
|
||||
│ │ ├── d1
|
||||
│ │ ├── d5
|
||||
│ │ ├── d6
|
||||
│ │ ├── d7
|
||||
│ │ ├── d9
|
||||
│ │ ├── da
|
||||
│ │ ├── db
|
||||
│ │ ├── dc
|
||||
│ │ ├── dd
|
||||
│ │ ├── de
|
||||
│ │ ├── df
|
||||
│ │ ├── e3
|
||||
│ │ ├── e4
|
||||
│ │ ├── e5
|
||||
│ │ ├── e6
|
||||
│ │ ├── e7
|
||||
│ │ ├── e8
|
||||
│ │ ├── e9
|
||||
│ │ ├── ec
|
||||
│ │ ├── ed
|
||||
│ │ ├── ee
|
||||
│ │ ├── ef
|
||||
│ │ ├── f1
|
||||
│ │ ├── f2
|
||||
│ │ ├── f3
|
||||
│ │ ├── f6
|
||||
│ │ ├── f7
|
||||
│ │ ├── f9
|
||||
│ │ ├── fb
|
||||
│ │ ├── fc
|
||||
│ │ ├── fd
|
||||
│ │ ├── ff
|
||||
│ │ ├── info
|
||||
│ │ └── pack
|
||||
│ └── refs
|
||||
│ ├── heads
|
||||
│ ├── remotes
|
||||
│ └── tags
|
||||
├── .gitignore
|
||||
├── .python-version
|
||||
├── .venv
|
||||
│ ├── .gitignore
|
||||
│ ├── .lock
|
||||
│ ├── CACHEDIR.TAG
|
||||
│ ├── Lib
|
||||
│ │ └── site-packages
|
||||
│ ├── Scripts
|
||||
│ │ ├── activate
|
||||
│ │ ├── activate.bat
|
||||
│ │ ├── activate.csh
|
||||
│ │ ├── activate.fish
|
||||
│ │ ├── activate.nu
|
||||
│ │ ├── activate.ps1
|
||||
│ │ ├── activate_this.py
|
||||
│ │ ├── deactivate.bat
|
||||
│ │ ├── debugpy-adapter.exe
|
||||
│ │ ├── debugpy.exe
|
||||
│ │ ├── distro.exe
|
||||
│ │ ├── dotenv.exe
|
||||
│ │ ├── f2py.exe
|
||||
│ │ ├── fastapi.exe
|
||||
│ │ ├── httpx.exe
|
||||
│ │ ├── huggingface-cli.exe
|
||||
│ │ ├── ipython.exe
|
||||
│ │ ├── ipython3.exe
|
||||
│ │ ├── isympy.exe
|
||||
│ │ ├── jlpm.exe
|
||||
│ │ ├── jsonpointer
|
||||
│ │ ├── jsonschema.exe
|
||||
│ │ ├── jupyter-console.exe
|
||||
│ │ ├── jupyter-dejavu.exe
|
||||
│ │ ├── jupyter-events.exe
|
||||
│ │ ├── jupyter-execute.exe
|
||||
│ │ ├── jupyter-kernel.exe
|
||||
│ │ ├── jupyter-kernelspec.exe
|
||||
│ │ ├── jupyter-lab.exe
|
||||
│ │ ├── jupyter-labextension.exe
|
||||
│ │ ├── jupyter-labhub.exe
|
||||
│ │ ├── jupyter-migrate.exe
|
||||
│ │ ├── jupyter-nbconvert.exe
|
||||
│ │ ├── jupyter-notebook.exe
|
||||
│ │ ├── jupyter-run.exe
|
||||
│ │ ├── jupyter-server.exe
|
||||
│ │ ├── jupyter-troubleshoot.exe
|
||||
│ │ ├── jupyter-trust.exe
|
||||
│ │ ├── jupyter.exe
|
||||
│ │ ├── markdown-it.exe
|
||||
│ │ ├── mcp.exe
|
||||
│ │ ├── normalizer.exe
|
||||
│ │ ├── numpy-config.exe
|
||||
│ │ ├── openai.exe
|
||||
│ │ ├── petname.exe
|
||||
│ │ ├── pip.exe
|
||||
│ │ ├── pip3.11.exe
|
||||
│ │ ├── pip3.exe
|
||||
│ │ ├── pybabel.exe
|
||||
│ │ ├── pydoc.bat
|
||||
│ │ ├── pygmentize.exe
|
||||
│ │ ├── pyjson5.exe
|
||||
│ │ ├── python.exe
|
||||
│ │ ├── pythonw.exe
|
||||
│ │ ├── pywin32_postinstall.exe
|
||||
│ │ ├── pywin32_postinstall.py
|
||||
│ │ ├── pywin32_testall.exe
|
||||
│ │ ├── pywin32_testall.py
|
||||
│ │ ├── send2trash.exe
|
||||
│ │ ├── torchfrtrace.exe
|
||||
│ │ ├── torchrun.exe
|
||||
│ │ ├── tqdm.exe
|
||||
│ │ ├── transformers-cli.exe
|
||||
│ │ ├── typer.exe
|
||||
│ │ ├── uvicorn.exe
|
||||
│ │ └── wsdump.exe
|
||||
│ ├── etc
|
||||
│ │ └── jupyter
|
||||
│ ├── include
|
||||
│ │ └── site
|
||||
│ ├── pyvenv.cfg
|
||||
│ └── share
|
||||
│ ├── applications
|
||||
│ ├── icons
|
||||
│ ├── jupyter
|
||||
│ └── man
|
||||
├── Apikeys.ipynb
|
||||
├── Credenciales.ipynb
|
||||
├── Encriptacion.ipynb
|
||||
├── README.md
|
||||
├── backend
|
||||
│ ├── __init__.py
|
||||
│ ├── __pycache__
|
||||
│ │ ├── __init__.cpython-311.pyc
|
||||
│ │ └── main.cpython-311.pyc
|
||||
│ ├── api
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── __pycache__
|
||||
│ │ └── v1
|
||||
│ ├── deps
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── auth.py
|
||||
│ └── main.py
|
||||
├── config
|
||||
│ └── .env
|
||||
├── data
|
||||
│ ├── files
|
||||
│ │ ├── pdf
|
||||
│ │ └── txt
|
||||
│ ├── postgresql
|
||||
│ │ ├── docker-compose.yml
|
||||
│ │ └── pgdata
|
||||
│ └── sqlite
|
||||
├── entrypoint
|
||||
│ ├── __init__.py
|
||||
│ ├── __pycache__
|
||||
│ │ ├── __init__.cpython-311.pyc
|
||||
│ │ └── init_db.cpython-311.pyc
|
||||
│ ├── add_to_pythonpath.ps1
|
||||
│ └── init_db.py
|
||||
├── frontend
|
||||
│ ├── .github
|
||||
│ │ └── workflows
|
||||
│ ├── .gitignore
|
||||
│ ├── .nvmrc
|
||||
│ ├── .prettierrc.mjs
|
||||
│ ├── .storybook
|
||||
│ │ ├── main.ts
|
||||
│ │ └── preview.tsx
|
||||
│ ├── .stylelintignore
|
||||
│ ├── .stylelintrc.json
|
||||
│ ├── .yarn
|
||||
│ │ └── releases
|
||||
│ ├── .yarnrc.yml
|
||||
│ ├── README.md
|
||||
│ ├── eslint.config.js
|
||||
│ ├── index.html
|
||||
│ ├── node_modules
|
||||
│ │ ├── .bin
|
||||
│ │ ├── .package-lock.json
|
||||
│ │ ├── .vite
|
||||
│ │ ├── .vite-temp
|
||||
│ │ ├── @adobe
|
||||
│ │ ├── @ampproject
|
||||
│ │ ├── @asamuzakjp
|
||||
│ │ ├── @babel
|
||||
│ │ ├── @csstools
|
||||
│ │ ├── @dimforge
|
||||
│ │ ├── @dual-bundle
|
||||
│ │ ├── @esbuild
|
||||
│ │ ├── @eslint
|
||||
│ │ ├── @eslint-community
|
||||
│ │ ├── @floating-ui
|
||||
│ │ ├── @humanfs
|
||||
│ │ ├── @humanwhocodes
|
||||
│ │ ├── @ianvs
|
||||
│ │ ├── @isaacs
|
||||
│ │ ├── @joshwooding
|
||||
│ │ ├── @jridgewell
|
||||
│ │ ├── @keyv
|
||||
│ │ ├── @mantine
|
||||
│ │ ├── @modelcontextprotocol
|
||||
│ │ ├── @nodelib
|
||||
│ │ ├── @pkgjs
|
||||
│ │ ├── @react-three
|
||||
│ │ ├── @rollup
|
||||
│ │ ├── @storybook
|
||||
│ │ ├── @svgr
|
||||
│ │ ├── @tabler
|
||||
│ │ ├── @testing-library
|
||||
│ │ ├── @tweenjs
|
||||
│ │ ├── @types
|
||||
│ │ ├── @typescript-eslint
|
||||
│ │ ├── @vitejs
|
||||
│ │ ├── @vitest
|
||||
│ │ ├── @webgpu
|
||||
│ │ ├── accepts
|
||||
│ │ ├── acorn
|
||||
│ │ ├── acorn-jsx
|
||||
│ │ ├── agent-base
|
||||
│ │ ├── ajv
|
||||
│ │ ├── ansi-regex
|
||||
│ │ ├── ansi-styles
|
||||
│ │ ├── argparse
|
||||
│ │ ├── aria-query
|
||||
│ │ ├── array-buffer-byte-length
|
||||
│ │ ├── array-includes
|
||||
│ │ ├── array-union
|
||||
│ │ ├── array.prototype.findlast
|
||||
│ │ ├── array.prototype.flat
|
||||
│ │ ├── array.prototype.flatmap
|
||||
│ │ ├── array.prototype.tosorted
|
||||
│ │ ├── arraybuffer.prototype.slice
|
||||
│ │ ├── assertion-error
|
||||
│ │ ├── ast-types
|
||||
│ │ ├── ast-types-flow
|
||||
│ │ ├── astral-regex
|
||||
│ │ ├── async-function
|
||||
│ │ ├── available-typed-arrays
|
||||
│ │ ├── axe-core
|
||||
│ │ ├── axobject-query
|
||||
│ │ ├── balanced-match
|
||||
│ │ ├── base64-js
|
||||
│ │ ├── better-opn
|
||||
│ │ ├── body-parser
|
||||
│ │ ├── brace-expansion
|
||||
│ │ ├── braces
|
||||
│ │ ├── browser-assert
|
||||
│ │ ├── browserslist
|
||||
│ │ ├── buffer
|
||||
│ │ ├── bytes
|
||||
│ │ ├── cac
|
||||
│ │ ├── cacheable
|
||||
│ │ ├── call-bind
|
||||
│ │ ├── call-bind-apply-helpers
|
||||
│ │ ├── call-bound
|
||||
│ │ ├── callsites
|
||||
│ │ ├── camelcase
|
||||
│ │ ├── camelcase-css
|
||||
│ │ ├── caniuse-lite
|
||||
│ │ ├── chai
|
||||
│ │ ├── chalk
|
||||
│ │ ├── check-error
|
||||
│ │ ├── clsx
|
||||
│ │ ├── color-convert
|
||||
│ │ ├── color-name
|
||||
│ │ ├── colord
|
||||
│ │ ├── concat-map
|
||||
│ │ ├── content-disposition
|
||||
│ │ ├── content-type
|
||||
│ │ ├── convert-source-map
|
||||
│ │ ├── cookie
|
||||
│ │ ├── cookie-signature
|
||||
│ │ ├── cors
|
||||
│ │ ├── cosmiconfig
|
||||
│ │ ├── cross-spawn
|
||||
│ │ ├── css-functions-list
|
||||
│ │ ├── css-tree
|
||||
│ │ ├── css.escape
|
||||
│ │ ├── cssesc
|
||||
│ │ ├── cssstyle
|
||||
│ │ ├── csstype
|
||||
│ │ ├── damerau-levenshtein
|
||||
│ │ ├── data-urls
|
||||
│ │ ├── data-view-buffer
|
||||
│ │ ├── data-view-byte-length
|
||||
│ │ ├── data-view-byte-offset
|
||||
│ │ ├── debug
|
||||
│ │ ├── decimal.js
|
||||
│ │ ├── deep-eql
|
||||
│ │ ├── deep-is
|
||||
│ │ ├── define-data-property
|
||||
│ │ ├── define-lazy-prop
|
||||
│ │ ├── define-properties
|
||||
│ │ ├── depd
|
||||
│ │ ├── dequal
|
||||
│ │ ├── detect-node-es
|
||||
│ │ ├── dir-glob
|
||||
│ │ ├── doctrine
|
||||
│ │ ├── dom-accessibility-api
|
||||
│ │ ├── dot-case
|
||||
│ │ ├── dunder-proto
|
||||
│ │ ├── eastasianwidth
|
||||
│ │ ├── ee-first
|
||||
│ │ ├── electron-to-chromium
|
||||
│ │ ├── emoji-regex
|
||||
│ │ ├── encodeurl
|
||||
│ │ ├── entities
|
||||
│ │ ├── env-paths
|
||||
│ │ ├── error-ex
|
||||
│ │ ├── es-abstract
|
||||
│ │ ├── es-define-property
|
||||
│ │ ├── es-errors
|
||||
│ │ ├── es-iterator-helpers
|
||||
│ │ ├── es-module-lexer
|
||||
│ │ ├── es-object-atoms
|
||||
│ │ ├── es-set-tostringtag
|
||||
│ │ ├── es-shim-unscopables
|
||||
│ │ ├── es-to-primitive
|
||||
│ │ ├── esbuild
|
||||
│ │ ├── esbuild-register
|
||||
│ │ ├── escalade
|
||||
│ │ ├── escape-html
|
||||
│ │ ├── escape-string-regexp
|
||||
│ │ ├── eslint
|
||||
│ │ ├── eslint-config-mantine
|
||||
│ │ ├── eslint-plugin-jsx-a11y
|
||||
│ │ ├── eslint-plugin-react
|
||||
│ │ ├── eslint-scope
|
||||
│ │ ├── eslint-visitor-keys
|
||||
│ │ ├── espree
|
||||
│ │ ├── esprima
|
||||
│ │ ├── esquery
|
||||
│ │ ├── esrecurse
|
||||
│ │ ├── estraverse
|
||||
│ │ ├── estree-walker
|
||||
│ │ ├── esutils
|
||||
│ │ ├── etag
|
||||
│ │ ├── eventsource
|
||||
│ │ ├── eventsource-parser
|
||||
│ │ ├── expect-type
|
||||
│ │ ├── express
|
||||
│ │ ├── express-rate-limit
|
||||
│ │ ├── fast-deep-equal
|
||||
│ │ ├── fast-glob
|
||||
│ │ ├── fast-json-stable-stringify
|
||||
│ │ ├── fast-levenshtein
|
||||
│ │ ├── fast-uri
|
||||
│ │ ├── fastest-levenshtein
|
||||
│ │ ├── fastq
|
||||
│ │ ├── fdir
|
||||
│ │ ├── fflate
|
||||
│ │ ├── file-entry-cache
|
||||
│ │ ├── fill-range
|
||||
│ │ ├── finalhandler
|
||||
│ │ ├── find-up
|
||||
│ │ ├── flat-cache
|
||||
│ │ ├── flatted
|
||||
│ │ ├── for-each
|
||||
│ │ ├── foreground-child
|
||||
│ │ ├── forwarded
|
||||
│ │ ├── fresh
|
||||
│ │ ├── function-bind
|
||||
│ │ ├── function.prototype.name
|
||||
│ │ ├── functions-have-names
|
||||
│ │ ├── gensync
|
||||
│ │ ├── get-intrinsic
|
||||
│ │ ├── get-nonce
|
||||
│ │ ├── get-proto
|
||||
│ │ ├── get-symbol-description
|
||||
│ │ ├── glob
|
||||
│ │ ├── glob-parent
|
||||
│ │ ├── global-modules
|
||||
│ │ ├── global-prefix
|
||||
│ │ ├── globals
|
||||
│ │ ├── globalthis
|
||||
│ │ ├── globby
|
||||
│ │ ├── globjoin
|
||||
│ │ ├── globrex
|
||||
│ │ ├── gopd
|
||||
│ │ ├── graphemer
|
||||
│ │ ├── harmony-reflect
|
||||
│ │ ├── has-bigints
|
||||
│ │ ├── has-flag
|
||||
│ │ ├── has-property-descriptors
|
||||
│ │ ├── has-proto
|
||||
│ │ ├── has-symbols
|
||||
│ │ ├── has-tostringtag
|
||||
│ │ ├── hasown
|
||||
│ │ ├── hookified
|
||||
│ │ ├── html-encoding-sniffer
|
||||
│ │ ├── html-tags
|
||||
│ │ ├── http-errors
|
||||
│ │ ├── http-proxy-agent
|
||||
│ │ ├── https-proxy-agent
|
||||
│ │ ├── iconv-lite
|
||||
│ │ ├── identity-obj-proxy
|
||||
│ │ ├── ieee754
|
||||
│ │ ├── ignore
|
||||
│ │ ├── import-fresh
|
||||
│ │ ├── imurmurhash
|
||||
│ │ ├── indent-string
|
||||
│ │ ├── inherits
|
||||
│ │ ├── ini
|
||||
│ │ ├── internal-slot
|
||||
│ │ ├── ipaddr.js
|
||||
│ │ ├── is-arguments
|
||||
│ │ ├── is-array-buffer
|
||||
│ │ ├── is-arrayish
|
||||
│ │ ├── is-async-function
|
||||
│ │ ├── is-bigint
|
||||
│ │ ├── is-boolean-object
|
||||
│ │ ├── is-callable
|
||||
│ │ ├── is-core-module
|
||||
│ │ ├── is-data-view
|
||||
│ │ ├── is-date-object
|
||||
│ │ ├── is-docker
|
||||
│ │ ├── is-extglob
|
||||
│ │ ├── is-finalizationregistry
|
||||
│ │ ├── is-fullwidth-code-point
|
||||
│ │ ├── is-generator-function
|
||||
│ │ ├── is-glob
|
||||
│ │ ├── is-map
|
||||
│ │ ├── is-number
|
||||
│ │ ├── is-number-object
|
||||
│ │ ├── is-plain-object
|
||||
│ │ ├── is-potential-custom-element-name
|
||||
│ │ ├── is-promise
|
||||
│ │ ├── is-regex
|
||||
│ │ ├── is-set
|
||||
│ │ ├── is-shared-array-buffer
|
||||
│ │ ├── is-string
|
||||
│ │ ├── is-symbol
|
||||
│ │ ├── is-typed-array
|
||||
│ │ ├── is-weakmap
|
||||
│ │ ├── is-weakref
|
||||
│ │ ├── is-weakset
|
||||
│ │ ├── is-wsl
|
||||
│ │ ├── isarray
|
||||
│ │ ├── isexe
|
||||
│ │ ├── iterator.prototype
|
||||
│ │ ├── its-fine
|
||||
│ │ ├── jackspeak
|
||||
│ │ ├── js-tokens
|
||||
│ │ ├── js-yaml
|
||||
│ │ ├── jsdoc-type-pratt-parser
|
||||
│ │ ├── jsdom
|
||||
│ │ ├── jsesc
|
||||
│ │ ├── json-buffer
|
||||
│ │ ├── json-parse-even-better-errors
|
||||
│ │ ├── json-schema-traverse
|
||||
│ │ ├── json-stable-stringify-without-jsonify
|
||||
│ │ ├── json5
|
||||
│ │ ├── jsx-ast-utils
|
||||
│ │ ├── keyv
|
||||
│ │ ├── kind-of
|
||||
│ │ ├── known-css-properties
|
||||
│ │ ├── language-subtag-registry
|
||||
│ │ ├── language-tags
|
||||
│ │ ├── levn
|
||||
│ │ ├── lines-and-columns
|
||||
│ │ ├── locate-path
|
||||
│ │ ├── lodash
|
||||
│ │ ├── lodash.merge
|
||||
│ │ ├── lodash.truncate
|
||||
│ │ ├── loose-envify
|
||||
│ │ ├── loupe
|
||||
│ │ ├── lower-case
|
||||
│ │ ├── lru-cache
|
||||
│ │ ├── lz-string
|
||||
│ │ ├── magic-string
|
||||
│ │ ├── map-or-similar
|
||||
│ │ ├── math-intrinsics
|
||||
│ │ ├── mathml-tag-names
|
||||
│ │ ├── mdn-data
|
||||
│ │ ├── media-typer
|
||||
│ │ ├── memoizerific
|
||||
│ │ ├── meow
|
||||
│ │ ├── merge-descriptors
|
||||
│ │ ├── merge2
|
||||
│ │ ├── meshoptimizer
|
||||
│ │ ├── micromatch
|
||||
│ │ ├── mime-db
|
||||
│ │ ├── mime-types
|
||||
│ │ ├── min-indent
|
||||
│ │ ├── minimatch
|
||||
│ │ ├── minimist
|
||||
│ │ ├── minipass
|
||||
│ │ ├── ms
|
||||
│ │ ├── nanoid
|
||||
│ │ ├── natural-compare
|
||||
│ │ ├── negotiator
|
||||
│ │ ├── no-case
|
||||
│ │ ├── node-releases
|
||||
│ │ ├── normalize-path
|
||||
│ │ ├── nwsapi
|
||||
│ │ ├── object-assign
|
||||
│ │ ├── object-inspect
|
||||
│ │ ├── object-keys
|
||||
│ │ ├── object.assign
|
||||
│ │ ├── object.entries
|
||||
│ │ ├── object.fromentries
|
||||
│ │ ├── object.values
|
||||
│ │ ├── on-finished
|
||||
│ │ ├── once
|
||||
│ │ ├── open
|
||||
│ │ ├── optionator
|
||||
│ │ ├── own-keys
|
||||
│ │ ├── p-limit
|
||||
│ │ ├── p-locate
|
||||
│ │ ├── package-json-from-dist
|
||||
│ │ ├── parent-module
|
||||
│ │ ├── parse-json
|
||||
│ │ ├── parse5
|
||||
│ │ ├── parseurl
|
||||
│ │ ├── path-exists
|
||||
│ │ ├── path-key
|
||||
│ │ ├── path-parse
|
||||
│ │ ├── path-scurry
|
||||
│ │ ├── path-to-regexp
|
||||
│ │ ├── path-type
|
||||
│ │ ├── pathe
|
||||
│ │ ├── pathval
|
||||
│ │ ├── picocolors
|
||||
│ │ ├── picomatch
|
||||
│ │ ├── pkce-challenge
|
||||
│ │ ├── possible-typed-array-names
|
||||
│ │ ├── postcss
|
||||
│ │ ├── postcss-js
|
||||
│ │ ├── postcss-media-query-parser
|
||||
│ │ ├── postcss-mixins
|
||||
│ │ ├── postcss-nested
|
||||
│ │ ├── postcss-preset-mantine
|
||||
│ │ ├── postcss-resolve-nested-selector
|
||||
│ │ ├── postcss-safe-parser
|
||||
│ │ ├── postcss-scss
|
||||
│ │ ├── postcss-selector-parser
|
||||
│ │ ├── postcss-simple-vars
|
||||
│ │ ├── postcss-value-parser
|
||||
│ │ ├── prelude-ls
|
||||
│ │ ├── prettier
|
||||
│ │ ├── pretty-format
|
||||
│ │ ├── process
|
||||
│ │ ├── prop-types
|
||||
│ │ ├── proxy-addr
|
||||
│ │ ├── punycode
|
||||
│ │ ├── qs
|
||||
│ │ ├── queue-microtask
|
||||
│ │ ├── range-parser
|
||||
│ │ ├── raw-body
|
||||
│ │ ├── react
|
||||
│ │ ├── react-docgen
|
||||
│ │ ├── react-docgen-typescript
|
||||
│ │ ├── react-dom
|
||||
│ │ ├── react-is
|
||||
│ │ ├── react-number-format
|
||||
│ │ ├── react-reconciler
|
||||
│ │ ├── react-refresh
|
||||
│ │ ├── react-remove-scroll
|
||||
│ │ ├── react-remove-scroll-bar
|
||||
│ │ ├── react-router
|
||||
│ │ ├── react-router-dom
|
||||
│ │ ├── react-style-singleton
|
||||
│ │ ├── react-textarea-autosize
|
||||
│ │ ├── react-use-measure
|
||||
│ │ ├── recast
|
||||
│ │ ├── redent
|
||||
│ │ ├── reflect.getprototypeof
|
||||
│ │ ├── regexp.prototype.flags
|
||||
│ │ ├── require-from-string
|
||||
│ │ ├── resolve
|
||||
│ │ ├── resolve-from
|
||||
│ │ ├── reusify
|
||||
│ │ ├── rollup
|
||||
│ │ ├── router
|
||||
│ │ ├── rrweb-cssom
|
||||
│ │ ├── run-parallel
|
||||
│ │ ├── safe-array-concat
|
||||
│ │ ├── safe-buffer
|
||||
│ │ ├── safe-push-apply
|
||||
│ │ ├── safe-regex-test
|
||||
│ │ ├── safer-buffer
|
||||
│ │ ├── saxes
|
||||
│ │ ├── scheduler
|
||||
│ │ ├── semver
|
||||
│ │ ├── send
|
||||
│ │ ├── serve-static
|
||||
│ │ ├── set-cookie-parser
|
||||
│ │ ├── set-function-length
|
||||
│ │ ├── set-function-name
|
||||
│ │ ├── set-proto
|
||||
│ │ ├── setprototypeof
|
||||
│ │ ├── shebang-command
|
||||
│ │ ├── shebang-regex
|
||||
│ │ ├── side-channel
|
||||
│ │ ├── side-channel-list
|
||||
│ │ ├── side-channel-map
|
||||
│ │ ├── side-channel-weakmap
|
||||
│ │ ├── siginfo
|
||||
│ │ ├── signal-exit
|
||||
│ │ ├── slash
|
||||
│ │ ├── slice-ansi
|
||||
│ │ ├── snake-case
|
||||
│ │ ├── source-map
|
||||
│ │ ├── source-map-js
|
||||
│ │ ├── stackback
|
||||
│ │ ├── statuses
|
||||
│ │ ├── std-env
|
||||
│ │ ├── storybook
|
||||
│ │ ├── storybook-dark-mode
|
||||
│ │ ├── string-width
|
||||
│ │ ├── string-width-cjs
|
||||
│ │ ├── string.prototype.includes
|
||||
│ │ ├── string.prototype.matchall
|
||||
│ │ ├── string.prototype.repeat
|
||||
│ │ ├── string.prototype.trim
|
||||
│ │ ├── string.prototype.trimend
|
||||
│ │ ├── string.prototype.trimstart
|
||||
│ │ ├── strip-ansi
|
||||
│ │ ├── strip-ansi-cjs
|
||||
│ │ ├── strip-bom
|
||||
│ │ ├── strip-indent
|
||||
│ │ ├── strip-json-comments
|
||||
│ │ ├── stylelint
|
||||
│ │ ├── stylelint-config-recommended
|
||||
│ │ ├── stylelint-config-recommended-scss
|
||||
│ │ ├── stylelint-config-standard
|
||||
│ │ ├── stylelint-config-standard-scss
|
||||
│ │ ├── stylelint-scss
|
||||
│ │ ├── sugarss
|
||||
│ │ ├── supports-color
|
||||
│ │ ├── supports-hyperlinks
|
||||
│ │ ├── supports-preserve-symlinks-flag
|
||||
│ │ ├── suspend-react
|
||||
│ │ ├── svg-parser
|
||||
│ │ ├── svg-tags
|
||||
│ │ ├── symbol-tree
|
||||
│ │ ├── tabbable
|
||||
│ │ ├── table
|
||||
│ │ ├── three
|
||||
│ │ ├── tiny-invariant
|
||||
│ │ ├── tinybench
|
||||
│ │ ├── tinyexec
|
||||
│ │ ├── tinyglobby
|
||||
│ │ ├── tinypool
|
||||
│ │ ├── tinyrainbow
|
||||
│ │ ├── tinyspy
|
||||
│ │ ├── tldts
|
||||
│ │ ├── tldts-core
|
||||
│ │ ├── to-regex-range
|
||||
│ │ ├── toidentifier
|
||||
│ │ ├── tough-cookie
|
||||
│ │ ├── tr46
|
||||
│ │ ├── ts-api-utils
|
||||
│ │ ├── ts-dedent
|
||||
│ │ ├── tsconfck
|
||||
│ │ ├── tsconfig-paths
|
||||
│ │ ├── tslib
|
||||
│ │ ├── turbo-stream
|
||||
│ │ ├── type-check
|
||||
│ │ ├── type-fest
|
||||
│ │ ├── type-is
|
||||
│ │ ├── typed-array-buffer
|
||||
│ │ ├── typed-array-byte-length
|
||||
│ │ ├── typed-array-byte-offset
|
||||
│ │ ├── typed-array-length
|
||||
│ │ ├── typescript
|
||||
│ │ ├── typescript-eslint
|
||||
│ │ ├── unbox-primitive
|
||||
│ │ ├── undici-types
|
||||
│ │ ├── unpipe
|
||||
│ │ ├── unplugin
|
||||
│ │ ├── update-browserslist-db
|
||||
│ │ ├── uri-js
|
||||
│ │ ├── use-callback-ref
|
||||
│ │ ├── use-composed-ref
|
||||
│ │ ├── use-isomorphic-layout-effect
|
||||
│ │ ├── use-latest
|
||||
│ │ ├── use-sidecar
|
||||
│ │ ├── use-sync-external-store
|
||||
│ │ ├── util
|
||||
│ │ ├── util-deprecate
|
||||
│ │ ├── vary
|
||||
│ │ ├── vite
|
||||
│ │ ├── vite-node
|
||||
│ │ ├── vite-plugin-svgr
|
||||
│ │ ├── vite-tsconfig-paths
|
||||
│ │ ├── vitest
|
||||
│ │ ├── w3c-xmlserializer
|
||||
│ │ ├── webidl-conversions
|
||||
│ │ ├── webpack-virtual-modules
|
||||
│ │ ├── whatwg-encoding
|
||||
│ │ ├── whatwg-mimetype
|
||||
│ │ ├── whatwg-url
|
||||
│ │ ├── which
|
||||
│ │ ├── which-boxed-primitive
|
||||
│ │ ├── which-builtin-type
|
||||
│ │ ├── which-collection
|
||||
│ │ ├── which-typed-array
|
||||
│ │ ├── why-is-node-running
|
||||
│ │ ├── word-wrap
|
||||
│ │ ├── wrap-ansi
|
||||
│ │ ├── wrap-ansi-cjs
|
||||
│ │ ├── wrappy
|
||||
│ │ ├── write-file-atomic
|
||||
│ │ ├── ws
|
||||
│ │ ├── xml-name-validator
|
||||
│ │ ├── xmlchars
|
||||
│ │ ├── yallist
|
||||
│ │ ├── yocto-queue
|
||||
│ │ ├── zod
|
||||
│ │ ├── zod-to-json-schema
|
||||
│ │ └── zustand
|
||||
│ ├── package-lock.json
|
||||
│ ├── package.json
|
||||
│ ├── postcss.config.cjs
|
||||
│ ├── src
|
||||
│ │ ├── App.tsx
|
||||
│ │ ├── Router.tsx
|
||||
│ │ ├── assets
|
||||
│ │ ├── components
|
||||
│ │ ├── favicon.svg
|
||||
│ │ ├── main.tsx
|
||||
│ │ ├── pages
|
||||
│ │ ├── theme.ts
|
||||
│ │ └── vite-env.d.ts
|
||||
│ ├── test-utils
|
||||
│ │ ├── index.ts
|
||||
│ │ └── render.tsx
|
||||
│ ├── tsconfig.json
|
||||
│ ├── vite.config.mjs
|
||||
│ ├── vitest.setup.mjs
|
||||
│ └── yarn.lock
|
||||
├── llms
|
||||
│ ├── Agente.py
|
||||
│ ├── MCPs
|
||||
│ │ ├── MCPStdioServer.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── __pycache__
|
||||
│ ├── Memory
|
||||
│ │ ├── Base_MemoryConv.py
|
||||
│ │ ├── __pycache__
|
||||
│ │ └── postgres_MemoryConv.py
|
||||
│ ├── Modelos
|
||||
│ │ ├── Base_model.py
|
||||
│ │ ├── Openai_model.py
|
||||
│ │ ├── Openai_model_mmr.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── __pycache__
|
||||
│ ├── __init__.py
|
||||
│ └── __pycache__
|
||||
│ ├── Agente.cpython-311.pyc
|
||||
│ └── __init__.cpython-311.pyc
|
||||
├── main.py
|
||||
├── notebooks
|
||||
│ └── hacer_script_nombres.ipynb
|
||||
├── prueba_loop_agente.py
|
||||
├── prueba_mcp.py
|
||||
├── pruebas_conceptos
|
||||
│ ├── async
|
||||
│ │ ├── async_con_procesos.py
|
||||
│ │ ├── cliente.py
|
||||
│ │ ├── esperar_await.py
|
||||
│ │ ├── prueba_async.py
|
||||
│ │ └── server_loop.py
|
||||
│ ├── añadir_vectores_textos_postgres
|
||||
│ │ └── pruebas_vectores.ipynb
|
||||
│ ├── duckdb
|
||||
│ │ ├── prueba_duckdb.ipynb
|
||||
│ │ ├── textos_vss.duckdb
|
||||
│ │ └── textos_vss.duckdb.wal
|
||||
│ └── postgres_extensions
|
||||
│ ├── Dockerfile
|
||||
│ ├── backup_postgres15.sql
|
||||
│ ├── docker-compose.yml
|
||||
│ ├── init.sql
|
||||
│ └── pgdata
|
||||
├── pyproject.toml
|
||||
├── scripts
|
||||
│ ├── __init_.py
|
||||
│ ├── __pycache__
|
||||
│ │ └── prueba_carga_postrgesql.cpython-311.pyc
|
||||
│ └── datos_para_llms
|
||||
│ └── generar_tree.py
|
||||
├── security
|
||||
│ ├── Encriptar.py
|
||||
│ ├── __init__.py
|
||||
│ └── __pycache__
|
||||
│ ├── Encriptar.cpython-311.pyc
|
||||
│ └── __init__.cpython-311.pyc
|
||||
├── src
|
||||
│ ├── ApiKeys
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── __pycache__
|
||||
│ │ ├── openai_apikey.py
|
||||
│ │ └── openai_apikey_mmr.py
|
||||
│ ├── ConexionApis
|
||||
│ │ ├── OpenAi_conexion.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── __pycache__
|
||||
│ ├── ConexionSql
|
||||
│ │ ├── Base_conexion.py
|
||||
│ │ ├── Postgres_conexion.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── __pycache__
|
||||
│ ├── Credenciales
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── __pycache__
|
||||
│ │ ├── postgres_credencial.py
|
||||
│ │ └── postgres_credencial_mmr.py
|
||||
│ ├── __init__.py
|
||||
│ ├── __pycache__
|
||||
│ │ ├── __init__.cpython-311.pyc
|
||||
│ │ └── base.cpython-311.pyc
|
||||
│ └── base.py
|
||||
└── utils
|
||||
├── Generar_nombres.py
|
||||
├── __init__.py
|
||||
└── __pycache__
|
||||
├── Generar_nombres.cpython-311.pyc
|
||||
└── __init__.cpython-311.pyc
|
||||
Reference in New Issue
Block a user