New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ittia

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ittia

Connect to the ITTIA APIs or self-hosted ones

0.1.0
PyPI
Maintainers
1

A python package connects to the ITTIA APIs.

How-to

Check

Demo on how to fact-check a text:

import asyncio
from ittia import Check

base_url = "https://check.ittia.net"
format = "json"  # or markdown

check = Check(base_url=base_url, format=format)

query = "Germany hosted the 2024 Olympics"

result = asyncio.run(check(query))

print(result)

Self-host API

  • Check: https://github.com/ittia-research/check

Keywords

fact-check

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts