{"id":37071851,"url":"https://github.com/chigwell/taleb-analysis","last_synced_at":"2026-01-14T08:26:16.379Z","repository":{"id":329764361,"uuid":"1120623110","full_name":"chigwell/taleb-analysis","owner":"chigwell","description":"A new package would provide a text input describing a system, event, or scenario, and return a structured analysis based on Nassim Taleb's concepts of Black Swan events and antifragility. It would ide","archived":false,"fork":false,"pushed_at":"2025-12-21T15:54:49.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T05:44:33.178Z","etag":null,"topics":["antifragile-system","antifragility","black-swan-events","decision-making","event-analysis","fragile-system","hidden-risks","nassim-taleb","resilience","risk-assessment","risk-management","robust-system","scenario-analysis","strategic-planning","strategic-resilience","structured-analysis","system-analysis","text-input","volatility","workflow-integration"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/taleb-analysis/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chigwell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-21T15:54:36.000Z","updated_at":"2025-12-21T15:55:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/chigwell/taleb-analysis","commit_stats":null,"previous_names":["chigwell/taleb-analysis"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/chigwell/taleb-analysis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Ftaleb-analysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Ftaleb-analysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Ftaleb-analysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Ftaleb-analysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chigwell","download_url":"https://codeload.github.com/chigwell/taleb-analysis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Ftaleb-analysis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28413953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:16:59.381Z","status":"ssl_error","status_checked_at":"2026-01-14T08:13:45.490Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["antifragile-system","antifragility","black-swan-events","decision-making","event-analysis","fragile-system","hidden-risks","nassim-taleb","resilience","risk-assessment","risk-management","robust-system","scenario-analysis","strategic-planning","strategic-resilience","structured-analysis","system-analysis","text-input","volatility","workflow-integration"],"created_at":"2026-01-14T08:26:15.853Z","updated_at":"2026-01-14T08:26:16.360Z","avatar_url":"https://github.com/chigwell.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# taleb-analysis\n[![PyPI version](https://badge.fury.io/py/taleb-analysis.svg)](https://badge.fury.io/py/taleb-analysis)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![Downloads](https://static.pepy.tech/badge/taleb-analysis)](https://pepy.tech/project/taleb-analysis)\n[![LinkedIn](https://img.shields.io/badge/LinkedIn-blue)](https://www.linkedin.com/in/eugene-evstafev-716669181/)\n\n-------------\n\nA text-based analysis package inspired by Nassim Taleb's concepts of Black Swan events and antifragility.\n\n## Overview\n------------\n\nA new package would provide a text input describing a system, event, or scenario, and return a structured analysis based on Nassim Taleb's concepts of Black Swan events and antifragility. It would identify whether the input describes a fragile, robust, or antifragile system, highlight potential hidden risks (Black Swans), and suggest principles to improve resilience or benefit from volatility.\n\n## Installing\n------------\n\nYou can install the package using pip:\n```bash\npip install taleb_analysis\n```\n\n## Usage\n-----\n\nTo use the package, you can call the `taleb_analysis` function with the following parameters:\n```python\nfrom taleb_analysis import taleb_analysis\n\nvalue = taleb_analysis(user_input=\"text to analyze\", api_key=None, llm=None)\n```\nBy default, it will use the `ChatLLM7` from `langchain_llm7` package as the LLM instance. You can pass your own `llm` instance if you prefer to use a different LLM.\n\nFor example, to use the OpenAI's LLM, you can pass it like this:\n```python\nfrom langchain_openai import ChatOpenAI\nfrom taleb_analysis import taleb_analysis\n\nllm = ChatOpenAI()\nresponse = taleb_analysis(user_input=\"text to analyze\", llm=llm)\n```\n\nSimilarly, for Anthenropic:\n```python\nfrom langchain_anthropic import ChatAnthropic\nfrom taleb_analysis import taleb_analysis\n\nllm = ChatAnthropic()\nresponse = taleb_analysis(user_input=\"text to analyze\", llm=llm)\n```\n\nAnd for Google Generative AI:\n```python\nfrom langchain_google_genai import ChatGoogleGenerativeAI\nfrom taleb_analysis import taleb_analysis\n\nllm = ChatGoogleGenerativeAI()\nresponse = taleb_analysis(user_input=\"text to analyze\", llm=llm)\n```\n\n## API Key for ChatLLM7\n-----------------------\n\nThe default rate limits for the `ChatLLM7` free tier are generally sufficient. For higher rate limits, you can provide your API key in one of the following ways:\n\n*   Set the `LLM7_API_KEY` environment variable.\n*   Pass the API key directly to the function: `taleb_analysis(user_input, api_key=\"your_api_key\")`.\n\nYou can obtain a free API key by registering at https://token.llm7.io/\n\n## Contributing\n------------\n\nContributions are welcome! Please refer to the GitHub repository for more information.\n\n## Author\n---------\n\n*   Eugene Evstafev (hi@eugene.plus)\n\n## GitHub\n---------\n\n*   [taleb-analysis GitHub Issues](https://github.com/chigwell/taleb-analysis/issues)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchigwell%2Ftaleb-analysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchigwell%2Ftaleb-analysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchigwell%2Ftaleb-analysis/lists"}