instruction stringclasses 40
values | input stringlengths 19 186 | output stringlengths 200 8k | tags listlengths 1 7 |
|---|---|---|---|
Код на html | EbookFoundation/free-programming-books / _includes/head-custom.html | <!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup Google Analytics -->
<!-- You can set your favicon here -->
<link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
<!-- end custom head snippets -->
🤖 | [
"html"
] |
Код на css | vinta/awesome-python / website/static/style.css | *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
color-scheme: light;
--font-display: "Cormorant Garamond", Georgia, serif;
--font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
--shell-max: 84rem;
--shell-pad: clamp(1.25rem, 3vw, 2.5rem);
--bg-page: oklch(... | [
"css"
] |
OSINT утилита на html | vinta/awesome-python / website/templates/base.html | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}Awesome Python{% endblock %}</title>
<meta
name="description"
content="{% block description %}An opinionated list of Python framew... | [
"html",
"osint"
] |
Код на html | vinta/awesome-python / website/templates/index.html | {% extends "base.html" %}
{% block header %}
<header class="hero">
<div class="hero-sheen" aria-hidden="true"></div>
<div class="hero-noise" aria-hidden="true"></div>
<div class="hero-shell">
<nav class="hero-topbar" aria-label="Site">
<span class="hero-brand-mini">Awesome Python</span>
<div clas... | [
"html"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/auth_activities.sql | -- =============================================================
-- View: analytics.auth_activities
-- Looker source alias: ds49 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Tracks authentication events (login, logout, SSO, password
-- reset, etc.) from Supabase's... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/graph_execution.sql | -- =============================================================
-- View: analytics.graph_execution
-- Looker source alias: ds16 | Charts: 21
-- =============================================================
-- DESCRIPTION
-- One row per agent graph execution (last 90 days).
-- Unpacks the JSONB stats column into ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/node_block_execution.sql | -- =============================================================
-- View: analytics.node_block_execution
-- Looker source alias: ds14 | Charts: 11
-- =============================================================
-- DESCRIPTION
-- One row per node (block) execution (last 90 days).
-- Unpacks stats JSONB and joins ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_agent.sql | -- =============================================================
-- View: analytics.retention_agent
-- Looker source alias: ds35 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention broken down per individual agent.
-- Cohort = week of a user's fir... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_execution_daily.sql | -- =============================================================
-- View: analytics.retention_execution_daily
-- Looker source alias: ds111 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Daily cohort retention based on agent executions.
-- Cohort anchor = day of use... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_execution_weekly.sql | -- =============================================================
-- View: analytics.retention_execution_weekly
-- Looker source alias: ds92 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention based on agent executions.
-- Cohort anchor = week of u... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_daily.sql | -- =============================================================
-- View: analytics.retention_login_daily
-- Looker source alias: ds112 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Daily cohort retention based on login sessions.
-- Same logic as retention_login_we... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_onboarded_weekly.sql | -- =============================================================
-- View: analytics.retention_login_onboarded_weekly
-- Looker source alias: ds101 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention from login sessions, restricted to
-- users who ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_weekly.sql | -- =============================================================
-- View: analytics.retention_login_weekly
-- Looker source alias: ds83 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention based on login sessions.
-- Users are grouped by the ISO we... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_block_spending.sql | -- =============================================================
-- View: analytics.user_block_spending
-- Looker source alias: ds6 | Charts: 5
-- =============================================================
-- DESCRIPTION
-- One row per credit transaction (last 90 days).
-- Shows how users spend credits broken ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding.sql | -- =============================================================
-- View: analytics.user_onboarding
-- Looker source alias: ds68 | Charts: 3
-- =============================================================
-- DESCRIPTION
-- One row per user onboarding record. Contains the user's
-- stated usage reason, selected ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding_funnel.sql | -- =============================================================
-- View: analytics.user_onboarding_funnel
-- Looker source alias: ds74 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Pre-aggregated onboarding funnel showing how many users
-- completed each step and ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding_integration.sql | -- =============================================================
-- View: analytics.user_onboarding_integration
-- Looker source alias: ds75 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Pre-aggregated count of users who selected each integration
-- during onboardi... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/users_activities.sql | -- =============================================================
-- View: analytics.users_activities
-- Looker source alias: ds56 | Charts: 5
-- =============================================================
-- DESCRIPTION
-- One row per user with lifetime activity summary.
-- Joins login sessions with agent graph... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240722143307_migrations/migration.sql | -- CreateTable
CREATE TABLE "AgentGraph" (
"id" TEXT NOT NULL,
"version" INTEGER NOT NULL DEFAULT 1,
"name" TEXT,
"description" TEXT,
"isActive" BOOLEAN NOT NULL DEFAULT true,
"isTemplate" BOOLEAN NOT NULL DEFAULT false,
CONSTRAINT "AgentGraph_pkey" PRIMARY KEY ("id","version")
);
-- Creat... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240726131311_node_input_unique_constraint/migration.sql | /*
Warnings:
- A unique constraint covering the columns `[referencedByInputExecId,referencedByOutputExecId,name]` on the table `AgentNodeExecutionInputOutput` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX "AgentNodeExecutionInputOutput_referencedByInp... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240804040801_add_subgraph/migration.sql | -- AlterTable
ALTER TABLE "AgentGraph" ADD COLUMN "agentGraphParentId" TEXT;
-- AddForeignKey
ALTER TABLE "AgentGraph" ADD CONSTRAINT "AgentGraph_agentGraphParentId_version_fkey" FOREIGN KEY ("agentGraphParentId", "version") REFERENCES "AgentGraph"("id", "version") ON DELETE RESTRICT ON UPDATE CASCADE;
| [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240805115810_add_user_management/migration.sql | -- AlterTable
ALTER TABLE "AgentGraph" ADD COLUMN "userId" TEXT;
-- AlterTable
ALTER TABLE "AgentGraphExecution" ADD COLUMN "userId" TEXT;
-- AlterTable
ALTER TABLE "AgentGraphExecutionSchedule" ADD COLUMN "userId" TEXT;
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"email" TEXT NOT NU... | [
"sql"
] |
Код на css | AUTOMATIC1111/stable-diffusion-webui / extensions-builtin/canvas-zoom-and-pan/style.css | .canvas-tooltip-info {
position: absolute;
top: 10px;
left: 10px;
cursor: help;
background-color: rgba(0, 0, 0, 0.3);
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 100;
}
.canvas-tooltip-info::aft... | [
"css"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-card.html | <div class="card" style="{style}" onclick="{card_clicked}" data-name="{name}" {sort_keys}>
{background_image}
<div class="button-row">{copy_path_button}{metadata_button}{edit_button}</div>
<div class="actions">
<div class="additional">{search_terms}</div>
<span class="name">{name}</span>
<span class="descripti... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane-dirs.html | <div class="extra-network-pane-content-dirs">
<div id='{tabname}_{extra_networks_tabname}_dirs' class='extra-network-dirs'>
{dirs_html}
</div>
<div id='{tabname}_{extra_networks_tabname}_cards' class='extra-network-cards'>
{items_html}
</div>
</div>... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane-tree.html | <div class="extra-network-pane-content-tree resize-handle-row">
<div id='{tabname}_{extra_networks_tabname}_tree' class='extra-network-tree' style='flex-basis: {extra_networks_tree_view_default_width}px'>
{tree_html}
</div>
<div id='{tabname}_{extra_networks_tabname}_cards' c... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane.html | <div id='{tabname}_{extra_networks_tabname}_pane' class='extra-network-pane {tree_view_div_default_display_class}'>
<div class="extra-network-control" id="{tabname}_{extra_networks_tabname}_controls" style="display:none" >
<div class="extra-network-control--search">
<input
id="{t... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-tree-button.html | <span data-filterable-item-text hidden>{search_terms}</span>
<div class="tree-list-content {subclass}"
type="button"
onclick="extraNetworksTreeOnClick(event, '{tabname}', '{extra_networks_tabname}');{onclick_extra}"
data-path="{data_path}"
data-hash="{data_hash}"
>
<span class='tree-list-item-action... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/footer.html | <div>
<a href="{api_docs}">API</a>
•
<a href="https://github.com/AUTOMATIC1111/stable-diffusion-webui">Github</a>
•
<a href="https://gradio.app">Gradio</a>
•
<a href="#" onclick="showProfile('./internal/profile-startup'); return false;">Startup profil... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/licenses.html | <style>
#licenses h2 {font-size: 1.2em; font-weight: bold; margin-bottom: 0.2em;}
#licenses small {font-size: 0.95em; opacity: 0.85;}
#licenses pre { margin: 1em 0 2em 0;}
</style>
<h2><a href="https://github.com/invoke-ai/InvokeAI/blob/main/LICENSE">InvokeAI</a></h2>
<small>Some code for compatibil... | [
"html",
"express"
] |
Код на css | AUTOMATIC1111/stable-diffusion-webui / style.css | /* temporary fix to load default gradio font in frontend instead of backend */
@import url('webui-assets/css/sourcesanspro.css');
/* temporary fix to hide gradio crop tool until it's fixed https://github.com/gradio-app/gradio/issues/3810 */
div.gradio-image button[aria-label="Edit"] {
display: none;
}
... | [
"css"
] |
Код на css | langflow-ai/langflow / docs/css/custom.css | /**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
:root {
--ifm-navbar-link-hover-color: initial;
--ifm-navbar-padding-vertical: 0;
--ifm-global-radius: 16px;
--ifm-navbar-item-padd... | [
"node",
"css"
] |
OSINT утилита на html | langflow-ai/langflow / src/frontend/index.html | <!doctype html>
<html lang="en">
<head>
<base href="/" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json"... | [
"node",
"html",
"osint"
] |
Код на css | langflow-ai/langflow / src/frontend/src/App.css | @import "./style/custom-ace-overrides.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Prevent react flow to overflow the page */
body {
overflow: hidden;
}
.App {
text-align: center;
}
.label {
user-select: none;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox... | [
"node",
"react",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/ag-theme-shadcn.css | /* set the background color of many elements across the grid */
.ag-theme-shadcn {
--ag-foreground-color: hsl(var(--foreground)) !important;
--ag-background-color: hsl(var(--background)) !important;
--ag-secondary-foreground-color: hsl(var(--secondary-foreground)) !important;
--ag-data-color: hsl(var(--foregrou... | [
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/applies.css | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings:
"rlig" 1,
"calt" 1;
font-family: Inter, system-ui, sans-serif;
}
}
@keyframes slideDown {
from {
height: 0... | [
"node",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/classes.css | body {
margin: 0;
font-family:
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family:
source-code... | [
"node",
"react",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/custom-ace-overrides.css | /* Custom override for Ace Editor GitHub Dark theme background */
.ace-github-dark,
.ace-github-dark .ace_scroller {
background-color: #111 !important;
}
/* Custom override for Ace Editor Monokai theme background - only in dark mode */
.dark .ace-monokai,
.dark .ace-monokai .ace_scroller {
background-color: #14141... | [
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/index.css | @tailwind base;
@tailwind components;
@tailwind utilities;
/* TODO: Confirm that all colors here are found in tailwind config */
@layer base {
:root {
--font-sans: "Inter", sans-serif;
--font-mono: "JetBrains Mono", monospace;
--font-chivo: "Chivo", sans-serif;
--foreground: 0 0% 0%; /* hsl(0, 0%, ... | [
"node",
"css"
] |
Код на html | langchain-ai/langchain / libs/langchain/tests/integration_tests/examples/example-utf8.html | <html>
<head>
<title>Chew dad's slippers</title>
</head>
<body>
<h1>
Instead of drinking water from the cat bowl, make sure to steal water from
the toilet
</h1>
<h2>Chase the red dot</h2>
<p>
Munch, munch, chomp, chomp hate dogs. Spill litter box, scratch at owner,
dest... | [
"html"
] |
Код на html | langchain-ai/langchain / libs/langchain/tests/integration_tests/examples/example.html | <html>
<head>
<title>Chew dad's slippers</title>
</head>
<body>
<h1>
Instead of drinking water from the cat bowl, make sure to steal water from
the toilet
</h1>
<h2>Chase the red dot</h2>
<p>
Munch, munch, chomp, chomp hate dogs. Spill litter box, scratch at owner,
dest... | [
"html"
] |
Код на css | open-webui/open-webui / backend/open_webui/static/assets/pdf-style.css | /* HTML and Body */
@font-face {
font-family: 'NotoSans';
src: url('fonts/NotoSans-Variable.ttf');
}
@font-face {
font-family: 'NotoSansJP';
src: url('fonts/NotoSansJP-Variable.ttf');
}
@font-face {
font-family: 'NotoSansKR';
src: url('fonts/NotoSansKR-Variable.ttf');
}
@font-face {
font-family: 'NotoSansSC';... | [
"css"
] |
Код на css | open-webui/open-webui / backend/open_webui/static/swagger-ui/swagger-ui.css | .swagger-ui {
color: #3b4151;
font-family: sans-serif; /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
}
.swagger-ui html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.swagger-ui body {
margin: 0;
}
.swagger-ui article,
.swagger-ui aside,
.swagger... | [
"qt",
"css"
] |
Код на css | open-webui/open-webui / src/app.css | @reference "./tailwind.css";
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Variable.ttf');
font-display: swap;
}
@font-face {
font-family: 'Archivo';
src: url('/assets/fonts/Archivo-Variable.ttf');
font-display: swap;
}
@font-face {
font-family: 'Mona Sans';
src: url('/assets/fonts/Mona-Sa... | [
"css"
] |
Код на html | open-webui/open-webui / src/app.html | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/static/favicon.png" crossorigin="use-credentials" />
<link
rel="icon"
type="image/png"
href="/static/favicon-96x96.png"
sizes="96x96"
crossorigin="use-credentials"
/>
<link
rel="icon"
... | [
"html"
] |
Код на css | open-webui/open-webui / src/tailwind.css | @import 'tailwindcss';
@config '../tailwind.config.js';
@theme {
--color-gray-50: oklch(0.98 0 0);
--color-gray-100: oklch(0.94 0 0);
--color-gray-200: oklch(0.92 0 0);
--color-gray-300: oklch(0.85 0 0);
--color-gray-400: oklch(0.77 0 0);
--color-gray-500: oklch(0.69 0 0);
--color-gray-600: oklch(0.51 0 0);
-... | [
"css"
] |
Код на css | open-webui/open-webui / static/themes/rosepine-dawn.css | .rose-pine-dawn * {
color: #575279 !important;
stroke: #d7827e !important;
}
.rose-pine-dawn .app > * {
background-color: #faf4ed !important;
}
.rose-pine-dawn #nav {
background-color: #fffaf3;
}
.rose-pine-dawn .py-2\.5.my-auto.flex.flex-col.justify-between.h-screen {
background: #f2e9e1;
}
.rose-pine-dawn .b... | [
"css"
] |
Код на css | open-webui/open-webui / static/themes/rosepine.css | .rose-pine * {
color: #e0def4 !important;
stroke: #907aa9 !important;
}
.rose-pine .app > * {
background-color: #1f1d2e !important;
}
.rose-pine #nav {
background-color: #191724;
}
.rose-pine .py-2\.5.my-auto.flex.flex-col.justify-between.h-screen {
background: #191724;
}
.rose-pine .bg-white.dark\:bg-gray-800... | [
"css"
] |
OSINT утилита на html | anthropics/skills / skills/algorithmic-art/templates/viewer.html | <!DOCTYPE html>
<!--
THIS IS A TEMPLATE THAT SHOULD BE USED EVERY TIME AND MODIFIED.
WHAT TO KEEP:
✓ Overall structure (header, sidebar, main content)
✓ Anthropic branding (colors, fonts, layout)
✓ Seed navigation section (always include this)
✓ Self-contained artifact (everything inline)
W... | [
"html",
"osint"
] |
OSINT утилита на html | anthropics/skills / skills/skill-creator/assets/eval_review.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eval Set Review - __SKILL_NAME_PLACEHOLDER__</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" ... | [
"html",
"osint"
] |
OSINT утилита на html | anthropics/skills / skills/skill-creator/eval-viewer/viewer.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eval Review</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https:... | [
"html",
"osint"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/backend/migrations/create_plan_tasks_table.sql | -- Create enum type for task status
CREATE TYPE plan_task_status AS ENUM ('queued', 'in_progress', 'success', 'error');
-- Create plan_tasks table
CREATE TABLE IF NOT EXISTS plan_tasks (
id SERIAL PRIMARY KEY,
trip_plan_id VARCHAR(50) NOT NULL,
task_type VARCHAR(50) NOT NULL,
status plan_task_status NO... | [
"sql"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/backend/migrations/create_trip_plan_tables.sql | -- Create trip_plan_status table
CREATE TABLE IF NOT EXISTS trip_plan_status (
id text NOT NULL,
"tripPlanId" text NOT NULL,
status text NOT NULL DEFAULT 'pending',
"currentStep" text,
error text,
"startedAt" timestamp without time zone,
"completedAt" timestamp without time zone,
"create... | [
"sql"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/client/app/globals.css | @import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: DM Sans, sans-serif;
--font-mono: Space Mono, monospace;
--color-sidebar-ring: var(--sidebar-ring);
--color-side... | [
"css"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/client/prisma/migrations/20250601095905_auth/migration.sql | -- CreateTable
CREATE TABLE "user" (
"id" TEXT NOT NULL,
"name" TEXT NOT NULL,
"email" TEXT NOT NULL,
"emailVerified" BOOLEAN NOT NULL,
"image" TEXT,
"createdAt" TIMESTAMP(3) NOT NULL,
"updatedAt" TIMESTAMP(3) NOT NULL,
CONSTRAINT "user_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE... | [
"sql"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/client/prisma/migrations/20250601105031_trip/migration.sql | -- CreateTable
CREATE TABLE "trip_plan" (
"id" TEXT NOT NULL,
"name" TEXT NOT NULL,
"destination" TEXT NOT NULL,
"startingLocation" TEXT NOT NULL,
"travelDatesStart" TEXT NOT NULL,
"travelDatesEnd" TEXT,
"dateInputType" TEXT NOT NULL DEFAULT 'picker',
"duration" INTEGER,
"travelingWi... | [
"sql"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/client/prisma/migrations/20250601112349_/migration.sql | /*
Warnings:
- You are about to drop the column `planningStyle` on the `trip_plan` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "trip_plan" DROP COLUMN "planningStyle";
🔍 | [
"sql"
] |
SQL запрос | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/agent_teams/ai_travel_planner_agent_team/client/schema.sql | -- Create trip_plan_status table
CREATE TABLE "trip_plan_status" (
"id" TEXT NOT NULL,
"tripPlanId" TEXT NOT NULL,
"status" TEXT NOT NULL DEFAULT 'pending',
"currentStep" TEXT,
"error" TEXT,
"startedAt" TIMESTAMP,
"completedAt" TIMESTAMP,
"createdAt" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
"upda... | [
"sql"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_negotiation_battle_simulator/frontend/src/app/globals.css | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Warm Editorial Palette - Stone & Paper */
:root {
/* Core Colors */
--bg-app: #FAF8F5;
/* W... | [
"css"
] |
Код на html | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/web/build/index.html | <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Your Junk-Free, Personalized Information Source."/><link rel="apple-touch-ic... | [
"html"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/web/build/static/css/main.e6c13ad2.css | body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}
/*# sourceMappingURL=main.e... | [
"css"
] |
Код на html | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/web/public/index.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Your Junk-Free, Pe... | [
"html"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/web/src/App.css | .App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
al... | [
"css"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/web/src/index.css | body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Mona... | [
"css"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_ai_agents/multi_agent_apps/ai_speech_trainer_agent/frontend/style.css | .main > div:first-child {
padding-top: 0.9rem !important;
}
.custom-header {
text-align: center;
}
.custom-header > span:first-child {
font-size: 2.5rem;
font-weight: 600;
color: #4B8BBE;
}
.custom-header > span:nth-child(2) {
font-size: 1.2rem;
color: gray;
}
video {
width: 640px !... | [
"css"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / advanced_llm_apps/multimodal_video_moment_finder/frontend/app/globals.css | @import "tailwindcss";
:root {
--accent: #a855f7;
--accent-dim: #7c3aed;
--accent-glow: rgba(168, 85, 247, 0.15);
}
* {
scrollbar-width: thin;
scrollbar-color: #27272a transparent;
}
body {
background: #09090b;
}
/* Glass panels */
.glass {
background: rgba(24, 24, 27, 0.6);
backdrop-filter: blur(20... | [
"css"
] |
Код на html | Shubhamsaboo/awesome-llm-apps / advanced_llm_apps/thinkpath_chatbot_app/index.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guided LLM Chat</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
... | [
"html"
] |
Код на css | Shubhamsaboo/awesome-llm-apps / awesome_agent_skills/self-improving-agent-skills/frontend/src/app/globals.css | @import "tailwindcss";
@layer base {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
}
/* Dark mode (default) */
html.dark body {
background-color: #09090b;
color: #fafafa;
}
/* Light mode */
html.light body {
background-color: #fafafa;... | [
"css"
] |
Реализуй на C++ | pytorch/pytorch / .ci/pytorch/test_example_code/check-torch-cuda.cpp | #include <torch/torch.h>
int main(int argc, const char* argv[]) {
std::cout << "Checking that CUDA archs are setup correctly" << std::endl;
TORCH_CHECK(torch::rand({ 3, 5 }, torch::Device(torch::kCUDA)).defined(), "CUDA archs are not setup correctly");
// These have to run after CUDA is initialized
s... | [
"cpp"
] |
Реализуй на C++ | pytorch/pytorch / android/pytorch_android/generate_test_asset.cpp | #include <torch/csrc/jit/api/module.h>
#include <torch/jit.h>
#include <torch/script.h>
#include <fstream>
#include <iostream>
#include <string>
int main(int argc, char* argv[]) {
std::string input_file_path{argv[1]};
std::string output_file_path{argv[2]};
std::ifstream ifs(input_file_path);
std::stringstrea... | [
"cpp"
] |
Реализуй на C++ | pytorch/pytorch / android/pytorch_android/src/androidTest/cpp/pytorch_jni_common_test.cpp | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <gtest/gtest.h>
#include <ATen/core/type_factory.h>
#include "caffe2/android/pytorch_android/src/main/cpp/pytorch_jni_co... | [
"pytorch",
"cpp"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/PytorchHostTests.java | package org.pytorch;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.Objects;
public class PytorchHostTests extends PytorchTestBase {
@Override
protected Module loadModel(String path) throws I... | [
"java",
"pytorch"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/PytorchInstrumentedTests.java | package org.pytorch;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.junit.runner.RunWith;
@Run... | [
"java",
"pytorch"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/PytorchLiteInstrumentedTests.java | package org.pytorch;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.junit.runner.RunWith;
@Run... | [
"java",
"pytorch"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/PytorchTestBase.java | package org.pytorch;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.util.HashMap;
import java.uti... | [
"java",
"russian",
"pytorch",
"qt"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/suite/PytorchInstrumentedTestSuite.java | package org.pytorch.suite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.pytorch.PytorchInstrumentedTests;
@RunWith(Suite.class)
@Suite.SuiteClasses({PytorchInstrumentedTests.class})
public class PytorchInstrumentedTestSuite {}
| [
"java",
"pytorch"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/androidTest/java/org/pytorch/suite/PytorchLiteInstrumentedTestSuite.java | package org.pytorch.suite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.pytorch.PytorchLiteInstrumentedTests;
@RunWith(Suite.class)
@Suite.SuiteClasses({PytorchLiteInstrumentedTests.class})
public class PytorchLiteInstrumentedTestSuite {}
| [
"java",
"pytorch"
] |
Реализуй на C++ | pytorch/pytorch / android/pytorch_android/src/main/cpp/pytorch_jni_common.cpp | #include <cassert>
#include <iostream>
#include <memory>
#include <string>
#include <c10/core/MemoryFormat.h>
#include <c10/util/irange.h>
#include <fbjni/ByteBuffer.h>
#include <fbjni/fbjni.h>
#include "pytorch_jni_common.h"
#if defined(__ANDROID__)
#ifndef USE_PTHREADPOOL
#define USE_PTHREADPOOL
#endif /* USE_PTHR... | [
"pytorch",
"cpp"
] |
Реализуй на C++ | pytorch/pytorch / android/pytorch_android/src/main/cpp/pytorch_jni_jit.cpp | #include <cassert>
#include <iostream>
#include <memory>
#include <string>
#include <fbjni/ByteBuffer.h>
#include <fbjni/fbjni.h>
#include <ATen/record_function.h>
#include <torch/csrc/jit/runtime/print_handler.h>
#include <torch/script.h>
#include "caffe2/serialize/read_adapter_interface.h"
#include "pytorch_jni_co... | [
"pytorch",
"cpp"
] |
Реализуй на C++ | pytorch/pytorch / android/pytorch_android/src/main/cpp/pytorch_jni_lite.cpp | #include <cassert>
#include <iostream>
#include <memory>
#include <string>
#include <fbjni/ByteBuffer.h>
#include <fbjni/fbjni.h>
#include <c10/util/irange.h>
#include <torch/csrc/jit/mobile/import.h>
#include <torch/csrc/jit/mobile/module.h>
#include <torch/script.h>
#include "caffe2/serialize/read_adapter_interface... | [
"pytorch",
"cpp"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/main/java/org/pytorch/DType.java | package org.pytorch;
/** Codes representing tensor data types. */
public enum DType {
// NOTE: "jniCode" must be kept in sync with pytorch_jni_common.cpp.
// NOTE: Never serialize "jniCode", because it can change between releases.
/** Code for dtype torch.uint8. {@link Tensor#dtype()} */
UINT8(1),
/** Code ... | [
"java",
"pytorch"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/main/java/org/pytorch/Device.java | package org.pytorch;
public enum Device {
// Must be in sync with kDeviceCPU, kDeviceVulkan in
// pytorch_android/src/main/cpp/pytorch_jni_lite.cpp
CPU(1),
VULKAN(2),
;
final int jniCode;
Device(int jniCode) {
this.jniCode = jniCode;
}
}
| [
"java",
"pytorch"
] |
OSINT утилита на java | pytorch/pytorch / android/pytorch_android/src/main/java/org/pytorch/IValue.java | package org.pytorch;
import com.facebook.jni.annotations.DoNotStrip;
import java.util.Locale;
import java.util.Map;
/**
* Java representation of a TorchScript value, which is implemented as tagged union that can be one
* of the supported types: https://pytorch.org/docs/stable/jit.html#types .
*
* <p>Calling {@cod... | [
"java",
"pytorch",
"osint"
] |
Напиши Java класс | pytorch/pytorch / android/pytorch_android/src/main/java/org/pytorch/LiteModuleLoader.java | package org.pytorch;
import android.content.res.AssetManager;
import java.util.Map;
public class LiteModuleLoader {
/**
* Loads a serialized TorchScript module from the specified path on the disk to run on specified
* device. The model should be generated from this api _save_for_lite_interpreter().
*
*... | [
"java",
"pytorch"
] |
Код на css | fastapi/fastapi / docs/en/docs/css/custom.css | /* Fira Code, including characters used by Rich output, like the "heavy right-pointing angle bracket ornament", not included in Google Fonts */
@import url(https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css);
/* Noto Color Emoji for emoji support with the same font everywhere */
@import url(https://fonts.g... | [
"css"
] |
Код на css | fastapi/fastapi / docs/en/docs/css/termynal.css | /**
* termynal.js
*
* @author Ines Montani <ines@ines.io>
* @version 0.0.1
* @license MIT
*/
:root {
--color-bg: #252a33;
--color-text: #eee;
--color-text-subtle: #a2a2a2;
}
[data-termynal] {
width: 750px;
max-width: 100%;
background: var(--color-bg);
color: var(--color-text);
/*... | [
"css"
] |
Код на html | fastapi/fastapi / docs/en/overrides/main.html | {% extends "base.html" %}
{% block announce %}
<div class="announce-wrapper">
<div id="announce-left">
<div class="item">
<a class="announce-link" href="https://fastapicloud.com" target="_blank">
<span class="twemoji">
{% include ".icons/material/cloud-arrow-up.svg" %}
</span> Joi... | [
"html",
"fastapi"
] |
Код на html | fastapi/fastapi / docs/en/overrides/partials/copyright.html | <div class="md-copyright">
<div class="md-copyright__highlight">
The FastAPI trademark is owned by <a href="https://tiangolo.com" target="_blank">@tiangolo</a> and is registered in the US and across other regions
</div>
{% if not config.extra.generator == false %}
Made with
<a href="https://... | [
"html",
"fastapi"
] |
Код на html | fastapi/fastapi / docs_src/templates/templates/item.html | <html>
<head>
<title>Item Details</title>
<link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
</head>
<body>
<h1><a href="{{ url_for('read_item', id=id) }}">Item ID: {{ id }}</a></h1>
</body>
</html>
| [
"html"
] |
Код на html | microsoft/markitdown / packages/markitdown/tests/test_files/test_blog.html | <!doctype html>
<html lang="en" dir="ltr" class="blog-wrapper blog-post-page plugin-blog plugin-id-default" data-has-hydrated="false">
<head>
<meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.1.1">
<title data-rh="true">Does Model and Inference Parameter Matter in LLM Applications? - A Case Study for... | [
"pentest",
"html"
] |
OSINT утилита на html | microsoft/markitdown / packages/markitdown/tests/test_files/test_serp.html | <!DOCTYPE html><html dir="ltr" lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:Web="http://schemas.live.com/Web/"><script type="text/javascript" nonce="CBIzbSUqGEmYGU6mNbpe6yIKH2OE12Z19w8WyWqhgrU=" >//<![CDATA[
si_ST=new Date
//]]></script><head><!--pc--><title>Microsoft wikipedia - Search</title><me... | [
"html",
"osint"
] |
OSINT утилита на html | microsoft/markitdown / packages/markitdown/tests/test_files/test_wikipedia.html | <!DOCTYPE html>
<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-sticky-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-w... | [
"russian",
"html",
"vue",
"osint"
] |
Код на python | django/django / LICENSE.python | Django is licensed under the three-clause BSD license; see the file
LICENSE for details.
Django includes code from the Python standard library, which is licensed under
the Python license, a permissive open source license. The copyright and license
is included below for compliance with Python's terms.
----------------... | [
"express",
"python",
"django"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/autocomplete.css | select.admin-autocomplete {
width: 20em;
}
.select2-container--admin-autocomplete.select2-container {
min-height: 30px;
}
.select2-container--admin-autocomplete .select2-selection--single,
.select2-container--admin-autocomplete .select2-selection--multiple {
min-height: 30px;
padding: 0;
}
.select2-c... | [
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/base.css | /*
DJANGO Admin styles
*/
/* VARIABLE DEFINITIONS */
html[data-theme="light"],
:root {
--primary: #79aec8;
--secondary: #417690;
--accent: #f5dd5d;
--primary-fg: #fff;
--body-fg: #333;
--body-bg: #fff;
--body-quiet-color: #666;
--body-medium-color: #444;
--body-loud-color: #000... | [
"django",
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/changelists.css | /* CHANGELISTS */
#changelist .changelist-form-container {
display: flex;
align-items: flex-start;
width: 100%;
}
#changelist .changelist-form-container > div {
flex: 1 1 auto;
}
#changelist .changelist-form-container:not(:has(#changelist-filter)) > div {
width: 100%;
}
#changelist .changelist-f... | [
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/dark_mode.css | @media (prefers-color-scheme: dark) {
:root {
--primary: #264b5d;
--primary-fg: #f7f7f7;
--body-fg: #eeeeee;
--body-bg: #121212;
--body-quiet-color: #d0d0d0;
--body-medium-color: #e0e0e0;
--body-loud-color: #ffffff;
--breadcrumbs-link-fg: #e0e0e0;
--breadc... | [
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/dashboard.css | /* DASHBOARD */
.dashboard td, .dashboard th {
word-break: break-word;
}
.dashboard .module table th {
width: 100%;
}
.dashboard .module table td {
white-space: nowrap;
}
.dashboard .module table td a {
display: block;
padding-right: .6em;
}
/* RECENT ACTIONS MODULE */
.module ul.actionlist {
... | [
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/forms.css | @import url('widgets.css');
/* FORM ROWS */
.form-row {
overflow: hidden;
padding: 10px;
font-size: 0.8125rem;
border-bottom: 1px solid var(--hairline-color);
}
.form-row img, .form-row input {
vertical-align: middle;
}
.form-row label input[type="checkbox"] {
margin-top: 0;
vertical-ali... | [
"css"
] |
Код на css | django/django / django/contrib/admin/static/admin/css/login.css | /* LOGIN FORM */
.login {
background: var(--darkened-bg);
height: auto;
}
.login #header {
height: auto;
padding: 15px 16px;
justify-content: center;
}
.login #header h1 {
font-size: 1.125rem;
margin: 0;
}
.login #header h1 a {
color: var(--header-link-color);
}
.login #content {
... | [
"css"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.