text
stringlengths
5
22M
id
stringlengths
12
177
metadata
dict
__index_level_0__
int64
0
1.37k
Archai Documentation ==================== **Archai** is a Neural Architecture Search (NAS) framework built upon PyTorch. It provides a comprehensive solution for automating the process of finding the optimal architecture for deep learning models, making it easier for researchers and practitioners to achieve state-of-t...
archai/docs/index.rst/0
{ "file_path": "archai/docs/index.rst", "repo_id": "archai", "token_count": 683 }
341
Predictors ========== DNN Ensemble ------------ .. automodule:: archai.discrete_search.predictors.dnn_ensemble :members: :undoc-members:
archai/docs/reference/api/archai.discrete_search.predictors.rst/0
{ "file_path": "archai/docs/reference/api/archai.discrete_search.predictors.rst", "repo_id": "archai", "token_count": 54 }
342
DARTS ===== Bi-Level Architecture Trainer ------------------------------ .. automodule:: archai.supergraph.algos.darts.bilevel_arch_trainer :members: :undoc-members: Bi-Level Optimizer ------------------ .. automodule:: archai.supergraph.algos.darts.bilevel_optimizer :members: :undoc-members: Bi-Level ...
archai/docs/reference/api/archai.supergraph.algos.darts.rst/0
{ "file_path": "archai/docs/reference/api/archai.supergraph.algos.darts.rst", "repo_id": "archai", "token_count": 308 }
343
Utilities ========= Augmented Searcher ------------------ .. automodule:: archai.supergraph.utils.augmented_searcher :members: :undoc-members: Augmented Trainer ----------------- .. automodule:: archai.supergraph.utils.augmented_trainer :members: :undoc-members: Checkpoint ---------- .. automodule:: a...
archai/docs/reference/api/archai.supergraph.utils.rst/0
{ "file_path": "archai/docs/reference/api/archai.supergraph.utils.rst", "repo_id": "archai", "token_count": 328 }
344
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from typing import List, Optional import torch from lm_eval.base import BaseLM from lm_eval_harness.utils.multiple_token_stopping_criteria import ( MultipleTokenStoppingCriteria, ) from lm_eval_harness.utils.request_factory import Request fr...
archai/research/lm_eval_harness/lm_eval_harness/lm_eval_hf_model.py/0
{ "file_path": "archai/research/lm_eval_harness/lm_eval_harness/lm_eval_hf_model.py", "repo_id": "archai", "token_count": 1949 }
345
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import argparse import numpy as np import torch from archai.onnx.onnx_loader import load_from_onnx def parse_args(): parser = argparse.ArgumentParser(description="Validates past key/values with an ONNX model.") parser.add_argument("o...
archai/scripts/onnx/validate_past_key_values.py/0
{ "file_path": "archai/scripts/onnx/validate_past_key_values.py", "repo_id": "archai", "token_count": 1229 }
346
import argparse import os from collections import Counter import numpy as np from archai.common import utils class _Corpus: def __init__(self, word2idx, path): self.word2idx = word2idx self.train = self.encode_file(path % "train") self.valid = self.encode_file(path % "valid") sel...
archai/scripts/supergraph/download_datasets/wikitext103_setup.py/0
{ "file_path": "archai/scripts/supergraph/download_datasets/wikitext103_setup.py", "repo_id": "archai", "token_count": 873 }
347
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from archai.common.common import common_init from archai.common.model_summary import summary from archai.supergraph.algos.petridish.petridish_model_desc_builder import ( PetridishModelBuilder, ) from archai.supergraph.nas.model import Model f...
archai/scripts/supergraph/performance/model_size.py/0
{ "file_path": "archai/scripts/supergraph/performance/model_size.py", "repo_id": "archai", "token_count": 325 }
348
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. [flake8] max-line-length = 120 extend-ignore = E111, E203, E402, E501, E721, E722, E741, F401, F403, F405, F407, W503, W504, W605 max-complexity = 12 [isort] profile = black [metadata] description-file = README.md
archai/setup.cfg/0
{ "file_path": "archai/setup.cfg", "repo_id": "archai", "token_count": 111 }
349
# Azure Setup This Azure code connects to an Azure Storage account by a connection string setup in an environment variable named `MODEL_STORAGE_CONNECTION_STRING`. There is a handy [setup.ps1](../docker/quantizer/setup.ps1) powershell script that will setup a new Azure Storage account and print this connection string...
archai/tasks/face_segmentation/aml/azure/readme.md/0
{ "file_path": "archai/tasks/face_segmentation/aml/azure/readme.md", "repo_id": "archai", "token_count": 729 }
350
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import argparse import os import sys import glob from shutil import copyfile, rmtree def cleanup_results(dataset, output_dir): """ cleans up a folder containing Results* folders downloaded from device and renames the output images to mat...
archai/tasks/face_segmentation/aml/snpe/cleanup_results.py/0
{ "file_path": "archai/tasks/face_segmentation/aml/snpe/cleanup_results.py", "repo_id": "archai", "token_count": 995 }
351
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import subprocess from threading import Thread, Lock class Shell: def __init__(self): self.output = '' self.lock = Lock() self.verbose = False def run(self, cwd, command, print_output=True): self.output =...
archai/tasks/face_segmentation/aml/util/shell.py/0
{ "file_path": "archai/tasks/face_segmentation/aml/util/shell.py", "repo_id": "archai", "token_count": 873 }
352
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from functools import partial from itertools import chain import torch from torch import nn class Conv2dSamePadding(nn.Conv2d): __doc__ = nn.Conv2d.__doc__ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) ...
archai/tasks/face_segmentation/search_space/ops.py/0
{ "file_path": "archai/tasks/face_segmentation/search_space/ops.py", "repo_id": "archai", "token_count": 633 }
353
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import math import os from argparse import ArgumentParser from datetime import datetime from pathlib import Path import pandas as pd import yaml from overrides.overrides import overrides from archai.common.common import logger from archai.discr...
archai/tasks/facial_landmark_detection/search.py/0
{ "file_path": "archai/tasks/facial_landmark_detection/search.py", "repo_id": "archai", "token_count": 2406 }
354
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import torch from archai.datasets.cv.transforms.lighting import Lighting def test_lighting_transform(): lighting_transform = Lighting( std=0.1, eigval=[0.2126, 0.7152, 0.0722], eigvec=[[-0.5675, 0.7192, 0.4009], [-0...
archai/tests/datasets/cv/transforms/test_lighting.py/0
{ "file_path": "archai/tests/datasets/cv/transforms/test_lighting.py", "repo_id": "archai", "token_count": 257 }
355
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import torch from archai.discrete_search.api.archai_model import ArchaiModel def test_archai_model(): model = torch.nn.Linear(10, 1) archid = "test_archid" metadata = {"key": "value"} # Assert that attributes are set correctly...
archai/tests/discrete_search/api/test_archai_model.py/0
{ "file_path": "archai/tests/discrete_search/api/test_archai_model.py", "repo_id": "archai", "token_count": 258 }
356
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from archai.discrete_search.search_spaces.nlp.transformer_flex.models.configuration_mem_transformer import ( MemTransformerConfig, ) def test_mem_transformer_config(): # Assert that the config has the correct values config = MemTran...
archai/tests/discrete_search/search_spaces/nlp/transformer_flex/models/test_configuration_mem_transformer.py/0
{ "file_path": "archai/tests/discrete_search/search_spaces/nlp/transformer_flex/models/test_configuration_mem_transformer.py", "repo_id": "archai", "token_count": 162 }
357
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. import pytest import torch from transformers import GPT2Config, GPT2LMHeadModel from archai.quantization.mixed_qat import MixedQAT @pytest.fixture def base_model(): return GPT2LMHeadModel(config=GPT2Config(n_layer=1, resid_pdrop=0.0, embd_...
archai/tests/quantization/test_mixed_qat.py/0
{ "file_path": "archai/tests/quantization/test_mixed_qat.py", "repo_id": "archai", "token_count": 721 }
358
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from archai.trainers.nlp.hf_training_args import DistillerTrainingArguments def test_distiller_training_arguments(): # Assert that the default values for alpha and temperature are correct args = DistillerTrainingArguments("tmp") ass...
archai/tests/trainers/nlp/test_hf_training_args.py/0
{ "file_path": "archai/tests/trainers/nlp/test_hf_training_args.py", "repo_id": "archai", "token_count": 178 }
359
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/released/nuget/nuget_client.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/released/nuget/nuget_client.py", "repo_id": "azure-devops-python-api", "token_count": 3302 }
360
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_0/test_results/test_results_client.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_0/test_results/test_results_client.py", "repo_id": "azure-devops-python-api", "token_count": 8925 }
361
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/feature_availability/feature_availability_client.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/feature_availability/feature_availability_client.py", "repo_id": "azure-devops-python-api", "token_count": 3217 }
362
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/git/git_client_base.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/git/git_client_base.py", "repo_id": "azure-devops-python-api", "token_count": 90188 }
363
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/member_entitlement_management/models.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/member_entitlement_management/models.py", "repo_id": "azure-devops-python-api", "token_count": 31356 }
364
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/pipelines/__init__.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/pipelines/__init__.py", "repo_id": "azure-devops-python-api", "token_count": 376 }
365
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/project_analysis/models.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/project_analysis/models.py", "repo_id": "azure-devops-python-api", "token_count": 3613 }
366
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/task/models.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/task/models.py", "repo_id": "azure-devops-python-api", "token_count": 15613 }
367
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------...
azure-devops-python-api/azure-devops/azure/devops/v7_1/tfvc/tfvc_client.py/0
{ "file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/tfvc/tfvc_client.py", "repo_id": "azure-devops-python-api", "token_count": 20075 }
368
@REM ------------------------------------------------- @REM init section. Set _echo=1 to echo everything.... @IF NOT DEFINED _echo ECHO OFF IF EXIST "%BUILD_BINARIESDIRECTORY%\python.3.6.2\tools\python.exe" ( REM Build step installs Python here. SET PYTHONEXE=%BUILD_BINARIESDIRECTORY%\python.3.6.2\tools\python...
azure-devops-python-api/scripts/windows/dev_setup.cmd/0
{ "file_path": "azure-devops-python-api/scripts/windows/dev_setup.cmd", "repo_id": "azure-devops-python-api", "token_count": 206 }
369
# Support ## How to file issues and get help This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. ## Microsoft Support Policy Support for this **PROJ...
azure-quantum-python/SUPPORT.md/0
{ "file_path": "azure-quantum-python/SUPPORT.md", "repo_id": "azure-quantum-python", "token_count": 90 }
370
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may ...
azure-quantum-python/azure-quantum/azure/quantum/_client/models/__init__.py/0
{ "file_path": "azure-quantum-python/azure-quantum/azure/quantum/_client/models/__init__.py", "repo_id": "azure-quantum-python", "token_count": 571 }
371
## # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. ## """Defines set of Cirq targets for interacting with Azure Quantum""" from azure.quantum.cirq.targets.target import Target from azure.quantum.cirq.targets.quantinuum import QuantinuumTarget from azure.quantum.cirq.targets.ionq import IonQTa...
azure-quantum-python/azure-quantum/azure/quantum/cirq/targets/__init__.py/0
{ "file_path": "azure-quantum-python/azure-quantum/azure/quantum/cirq/targets/__init__.py", "repo_id": "azure-quantum-python", "token_count": 182 }
372
## # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. ## from typing import TYPE_CHECKING, Any, Dict, List from azure.quantum.version import __version__ from qiskit import QuantumCircuit from abc import abstractmethod from .backend import AzureQirBackend from qiskit.providers.models import Backe...
azure-quantum-python/azure-quantum/azure/quantum/qiskit/backends/microsoft.py/0
{ "file_path": "azure-quantum-python/azure-quantum/azure/quantum/qiskit/backends/microsoft.py", "repo_id": "azure-quantum-python", "token_count": 1516 }
373
## # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. ## from ... import Job from ...job.base_job import DEFAULT_TIMEOUT from ..._client.models import JobDetails from .result import MicrosoftEstimatorResult class MicrosoftEstimatorJob(Job): """ A dedicated job class f...
azure-quantum-python/azure-quantum/azure/quantum/target/microsoft/job.py/0
{ "file_path": "azure-quantum-python/azure-quantum/azure/quantum/target/microsoft/job.py", "repo_id": "azure-quantum-python", "token_count": 460 }
374
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
azure-quantum-python/azure-quantum/eng/Record-Tests.ps1/0
{ "file_path": "azure-quantum-python/azure-quantum/eng/Record-Tests.ps1", "repo_id": "azure-quantum-python", "token_count": 275 }
375
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. <# .SYNOPSIS Includes utility cmdlets for working with conda both locally, and in Azure Pipelines and other hosted environments. #> function Test-CondaEnabled { <# .SYNOPSIS Tests if conda has been ena...
azure-quantum-python/build/conda-utils.psm1/0
{ "file_path": "azure-quantum-python/build/conda-utils.psm1", "repo_id": "azure-quantum-python", "token_count": 1806 }
376
<jupyter_start><jupyter_text>Resource Estimation for Double-factorized ChemistryIn this notebook we evaluate the physical resource estimates of using theso-called _double-factorized qubitization_ algorithm described in [[Phys. Rev.Research 3, 033055 (2021)](https://doi.org/10.1103/PhysRevResearch.3.033055)] tocalculate...
azure-quantum-python/samples/resource-estimator/estimation-chemistry.ipynb/0
{ "file_path": "azure-quantum-python/samples/resource-estimator/estimation-chemistry.ipynb", "repo_id": "azure-quantum-python", "token_count": 3233 }
377
module.exports = function (api) { api.cache(true); const presets = [ "@babel/preset-env", "@babel/preset-react" ]; const generatorOpts ={"compact" : true}; return { presets, generatorOpts }; }
azure-quantum-python/visualization/js-lib/babel.config.js/0
{ "file_path": "azure-quantum-python/visualization/js-lib/babel.config.js", "repo_id": "azure-quantum-python", "token_count": 99 }
378
export { SpaceDiagram } from "./resource-estimator"; export { TimeDiagram } from "./resource-estimator";
azure-quantum-python/visualization/react-lib/src/components/index.ts/0
{ "file_path": "azure-quantum-python/visualization/react-lib/src/components/index.ts", "repo_id": "azure-quantum-python", "token_count": 32 }
379
const path = require('path') const { CleanWebpackPlugin } = require('clean-webpack-plugin') module.exports = { entry: './src/index.ts', output: { path: path.resolve(__dirname, 'dist'), libraryTarget: 'commonjs' }, plugins: [new CleanWebpackPlugin()], module: { rules: [ { test: /\.(t...
azure-quantum-python/visualization/react-lib/webpack.config.js/0
{ "file_path": "azure-quantum-python/visualization/react-lib/webpack.config.js", "repo_id": "azure-quantum-python", "token_count": 356 }
380
bistring ======== |Build status| |Documentation status| The bistring library provides non-destructive versions of common string processing operations like normalization, case folding, and find/replace. Each bistring remembers the original string, and how its substrings map to substrings of the modified version. For ...
bistring/README.rst/0
{ "file_path": "bistring/README.rst", "repo_id": "bistring", "token_count": 1122 }
381
Tokenization ============ .. testsetup:: * from bistring import Tokenization .. autoclass:: bistring.Token .. autoclass:: bistring.Tokenization
bistring/docs/Python/Tokenization.rst/0
{ "file_path": "bistring/docs/Python/Tokenization.rst", "repo_id": "bistring", "token_count": 48 }
382
#!/usr/bin/env python3 # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT license. import icu from typing import IO def escape(cp: int) -> str: if cp < 0x10000: return f"\\u{cp:04x}" else: return f"\\u{{{cp:x}}}" def gen_boundary_regex(normalizer: icu.Nor...
bistring/js/scripts/generate_unicode.py/0
{ "file_path": "bistring/js/scripts/generate_unicode.py", "repo_id": "bistring", "token_count": 812 }
383
[[source]] name = "pypi" url = "https://pypi.org/simple" verify_ssl = true [dev-packages] bistring = {editable = true,extras = ["dev"],path = "."} [packages] bistring = {path = "."}
bistring/python/Pipfile/0
{ "file_path": "bistring/python/Pipfile", "repo_id": "bistring", "token_count": 78 }
384
from typing import Iterator, Tuple, Union, overload UString = Union[str, 'UnicodeString'] class BreakIterator: DONE: int @classmethod def createCharacterInstance(cls, locale: Locale) -> BreakIterator: ... @classmethod def createWordInstance(cls, locale: Locale) -> BreakIterator: ... @clas...
bistring/python/stubs/icu.pyi/0
{ "file_path": "bistring/python/stubs/icu.pyi", "repo_id": "bistring", "token_count": 749 }
385
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import json import os.path from typing import List from botbuilder.core import MessageFactory, TurnContext from botbuilder.schema import Attachment, ChannelAccount from helpers import DialogHelper from .dialog_bot import Di...
botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/bots/dialog_and_welcome_bot.py/0
{ "file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/bots/dialog_and_welcome_bot.py", "repo_id": "botbuilder-python", "token_count": 641 }
386
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.dialogs import WaterfallDialog, WaterfallStepContext, DialogTurnResult from botbuilder.dialogs.prompts import ConfirmPrompt, TextPrompt, PromptOptions from botbuilder.core import MessageFactory from botbuilder...
botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/dialogs/booking_dialog.py/0
{ "file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/dialogs/booking_dialog.py", "repo_id": "botbuilder-python", "token_count": 2167 }
387
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.core import ActivityHandler, TurnContext from botbuilder.schema import ChannelAccount class MyBot(ActivityHandler): async def on_members_added_activity( self, members_added: ChannelAccoun...
botbuilder-python/generators/app/templates/empty/{{cookiecutter.bot_name}}/bot.py/0
{ "file_path": "botbuilder-python/generators/app/templates/empty/{{cookiecutter.bot_name}}/bot.py", "repo_id": "botbuilder-python", "token_count": 187 }
388
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.schema import ResourceResponse, ConversationAccount class ActivityResourceResponse(ResourceResponse): def __init__(self, activity_id: str, conversation: ConversationAccount, **kwargs): super().__...
botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/activity_resourceresponse.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/activity_resourceresponse.py", "repo_id": "botbuilder-python", "token_count": 121 }
389
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from typing import List from botbuilder.dialogs import ( WaterfallDialog, WaterfallStepContext, DialogContext, DialogTurnResult, Dialog, ObjectPath, DialogTurnStatus, DialogReason, ) from botbu...
botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/dialogs/qnamaker_dialog.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/dialogs/qnamaker_dialog.py", "repo_id": "botbuilder-python", "token_count": 8025 }
390
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.schema import Activity class QnADialogResponseOptions: def __init__( self, active_learning_card_title: str = None, card_no_match_text: str = None, no_answer: Activity = No...
botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/qna_dialog_response_options.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/qna_dialog_response_options.py", "repo_id": "botbuilder-python", "token_count": 234 }
391
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import json import unittest from typing import List, Tuple from uuid import uuid4 from botbuilder.ai.luis import LuisApplication class LuisApplicationTest(unittest.TestCase): endpoint: str = "https://westus.api.cogniti...
botbuilder-python/libraries/botbuilder-ai/tests/luis/luis_application_test.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/luis_application_test.py", "repo_id": "botbuilder-python", "token_count": 1445 }
392
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. """Telemetry processor for Django.""" import sys from ..processor.telemetry_processor import TelemetryProcessor from .bot_telemetry_middleware import retrieve_bot_body class DjangoTelemetryProcessor(TelemetryProcessor): ...
botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/django/django_telemetry_processor.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/django/django_telemetry_processor.py", "repo_id": "botbuilder-python", "token_count": 245 }
393
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from warnings import warn from botbuilder.core import ( BotAdapter, BotState, Storage, RegisterClassMiddleware, UserState, ConversationState, AutoSaveStateMiddleware, ) class AdapterExtensions: ...
botbuilder-python/libraries/botbuilder-core/botbuilder/core/adapter_extensions.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/adapter_extensions.py", "repo_id": "botbuilder-python", "token_count": 1278 }
394
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import uuid from botbuilder.schema import ( Activity, ActivityEventNames, ActivityTypes, ConversationReference, ) def get_continuation_activity(reference: ConversationReference) -> Activity: return Activi...
botbuilder-python/libraries/botbuilder-core/botbuilder/core/conversation_reference_extension.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/conversation_reference_extension.py", "repo_id": "botbuilder-python", "token_count": 245 }
395
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from typing import List, Union from botbuilder.schema import ( ActivityTypes, Activity, Attachment, AttachmentLayoutTypes, CardAction, SuggestedActions, InputHints, ) def attachment_activity( ...
botbuilder-python/libraries/botbuilder-core/botbuilder/core/message_factory.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/message_factory.py", "repo_id": "botbuilder-python", "token_count": 4031 }
396
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # ---------------------------------------------------------------------...
botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/__init__.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/__init__.py", "repo_id": "botbuilder-python", "token_count": 246 }
397
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from http import HTTPStatus from logging import Logger from typing import Any from msrest.universal_http import ClientRequest from msrest.universal_http.async_abc import AsyncClientResponse from msrest.universal_http.async_r...
botbuilder-python/libraries/botbuilder-core/botbuilder/core/streaming/streaming_http_client.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/streaming/streaming_http_client.py", "repo_id": "botbuilder-python", "token_count": 1248 }
398
[bdist_wheel] universal=0
botbuilder-python/libraries/botbuilder-core/setup.cfg/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/setup.cfg", "repo_id": "botbuilder-python", "token_count": 10 }
399
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import uuid from typing import List import aiounittest from botbuilder.core import TurnContext from botbuilder.core.adapters import TestAdapter from botbuilder.schema import ( Activity, ConversationAccount, Conve...
botbuilder-python/libraries/botbuilder-core/tests/test_bot_adapter.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_bot_adapter.py", "repo_id": "botbuilder-python", "token_count": 1181 }
400
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import aiounittest from botbuilder.core import ( MemoryTranscriptStore, TranscriptLoggerMiddleware, TurnContext, ) from botbuilder.core.adapters import TestAdapter, TestFlow from botbuilder.schema import Activity...
botbuilder-python/libraries/botbuilder-core/tests/test_transcript_logger_middleware.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_transcript_logger_middleware.py", "repo_id": "botbuilder-python", "token_count": 556 }
401
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from typing import Callable, List from .token import Token class FindValuesOptions: """Contains search options, used to control how choices are recognized in a user's utterance.""" def __init__( self, ...
botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/find_values_options.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/find_values_options.py", "repo_id": "botbuilder-python", "token_count": 504 }
402
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from datetime import datetime, timedelta from threading import Lock from warnings import warn from botbuilder.core import ( BotAdapter, BotStateSet, ConversationState, UserState, TurnContext, ) from botbu...
botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_manager.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_manager.py", "repo_id": "botbuilder-python", "token_count": 5215 }
403
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.dialogs.memory import PathResolverBase class AliasPathResolver(PathResolverBase): def __init__(self, alias: str, prefix: str, postfix: str = None): """ Initializes a new instance of the <...
botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/path_resolvers/alias_path_resolver.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/path_resolvers/alias_path_resolver.py", "repo_id": "botbuilder-python", "token_count": 814 }
404
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from botbuilder.dialogs.memory import scope_path from .memory_scope import MemoryScope class ThisMemoryScope(MemoryScope): def __init__(self): super().__init__(scope_path.THIS) def get_memory(self, dialog_...
botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/this_memory_scope.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/this_memory_scope.py", "repo_id": "botbuilder-python", "token_count": 328 }
405
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from abc import abstractmethod import copy from typing import Dict, List from botbuilder.core.turn_context import TurnContext from botbuilder.schema import InputHints, ActivityTypes from botbuilder.dialogs.choices import ( ...
botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt.py", "repo_id": "botbuilder-python", "token_count": 4994 }
406
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import os from setuptools import setup REQUIRES = [ "regex>=2022.1.18", "emoji==1.7.0", "recognizers-text-date-time>=1.0.2a1", "recognizers-text-number-with-unit>=1.0.2a1", "recognizers-text-number>=1.0.2...
botbuilder-python/libraries/botbuilder-dialogs/setup.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/setup.py", "repo_id": "botbuilder-python", "token_count": 847 }
407
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. # pylint: disable=ungrouped-imports import enum from typing import List import uuid import aiounittest from botframework.connector.auth import ClaimsIdentity, AuthenticationConstants from botbuilder.core import ( TurnCo...
botbuilder-python/libraries/botbuilder-dialogs/tests/test_dialogextensions.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/test_dialogextensions.py", "repo_id": "botbuilder-python", "token_count": 3555 }
408
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from logging import Logger from typing import Any from botbuilder.integration.aiohttp import ConfigurationServiceClientCredentialFactory from botbuilder.schema import Activity from botframework.connector import HttpClientFac...
botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/configuration_bot_framework_authentication.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/configuration_bot_framework_authentication.py", "repo_id": "botbuilder-python", "token_count": 1705 }
409
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. """Telemetry processor for aiohttp.""" import sys from botbuilder.applicationinsights.processor.telemetry_processor import ( TelemetryProcessor, ) from .aiohttp_telemetry_middleware import retrieve_aiohttp_body class Ai...
botbuilder-python/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/aiohttp_telemetry_processor.py/0
{ "file_path": "botbuilder-python/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/aiohttp_telemetry_processor.py", "repo_id": "botbuilder-python", "token_count": 255 }
410
[bdist_wheel] universal=1
botbuilder-python/libraries/botbuilder-schema/setup.cfg/0
{ "file_path": "botbuilder-python/libraries/botbuilder-schema/setup.cfg", "repo_id": "botbuilder-python", "token_count": 10 }
411
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # ---------------------------------------------------------------------...
botbuilder-python/libraries/botframework-connector/botframework/connector/__init__.py/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/__init__.py", "repo_id": "botbuilder-python", "token_count": 285 }
412
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from logging import Logger from botbuilder.schema import CallerIdConstants from ..bot_framework_sdk_client_async import BotFrameworkConnectorConfiguration from ..http_client_factory import HttpClientFactory from ._built_in_...
botbuilder-python/libraries/botframework-connector/botframework/connector/auth/_government_cloud_bot_framework_authentication.py/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/_government_cloud_bot_framework_authentication.py", "repo_id": "botbuilder-python", "token_count": 538 }
413
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from typing import Union import jwt from .jwt_token_extractor import JwtTokenExtractor from .verify_options import VerifyOptions from .authentication_constants import AuthenticationConstants from .credential_provider import...
botbuilder-python/libraries/botframework-connector/botframework/connector/auth/emulator_validation.py/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/emulator_validation.py", "repo_id": "botbuilder-python", "token_count": 3397 }
414
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from enum import Enum class Channels(str, Enum): """ Ids of channels supported by the Bot Builder. """ console = "console" """Console channel.""" cortana = "cortana" """Cortana channel.""" ...
botbuilder-python/libraries/botframework-connector/botframework/connector/channels.py/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/channels.py", "repo_id": "botbuilder-python", "token_count": 404 }
415
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # ---------------------------------------------------------------------...
botbuilder-python/libraries/botframework-connector/botframework/connector/teams/teams_connector_client.py/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/teams/teams_connector_client.py", "repo_id": "botbuilder-python", "token_count": 984 }
416
interactions: - request: body: '{"bot": {"id": "INVALID"}, "members": [{"id": "U19KH8EHJ:T03CWQ0QB"}], "activity": {"type": "message", "channelId": "slack", "from": {"id": "INVALID"}, "recipient": {"id": "U19KH8EHJ:T03CWQ0QB"}, "textFormat": "markdown", "attachmentLayout": "list", "text": "Hi ther...
botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_create_conversation_with_invalid_bot_id_fails.yaml/0
{ "file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_create_conversation_with_invalid_bot_id_fails.yaml", "repo_id": "botbuilder-python", "token_count": 633 }
417
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from .payload_receiver import PayloadReceiver from .payload_sender import PayloadSender from .send_packet import SendPacket __all__ = ["PayloadReceiver", "PayloadSender", "SendPacket"]
botbuilder-python/libraries/botframework-streaming/botframework/streaming/payload_transport/__init__.py/0
{ "file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payload_transport/__init__.py", "repo_id": "botbuilder-python", "token_count": 82 }
418
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from uuid import UUID from typing import List from botframework.streaming.payload_transport import PayloadSender from botframework.streaming.payloads.models import PayloadTypes, ResponsePayload from .payload_disassembler im...
botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/disassemblers/response_disassembler.py/0
{ "file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/disassemblers/response_disassembler.py", "repo_id": "botbuilder-python", "token_count": 476 }
419
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from typing import List from botframework.streaming.payloads import ContentStream class ReceiveRequest: def __init__( self, *, verb: str = None, path: str = None, streams: List[ContentStream] = None ): ...
botbuilder-python/libraries/botframework-streaming/botframework/streaming/receive_request.py/0
{ "file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/receive_request.py", "repo_id": "botbuilder-python", "token_count": 362 }
420
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from asyncio import Future, iscoroutinefunction, isfuture from typing import Callable from botframework.streaming import ( ProtocolAdapter, ReceiveResponse, RequestHandler, StreamingRequest, ) from botframewo...
botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/web_socket/web_socket_server.py/0
{ "file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/web_socket/web_socket_server.py", "repo_id": "botbuilder-python", "token_count": 1434 }
421
from typing import List from botbuilder.core import ( ActivityHandler, BotFrameworkAdapter, ConversationState, UserState, MessageFactory, TurnContext, ) from botbuilder.dialogs import DialogState from botframework.connector.auth import MicrosoftAppCredentials from config import DefaultConfig f...
botbuilder-python/tests/experimental/sso/child/bots/child_bot.py/0
{ "file_path": "botbuilder-python/tests/experimental/sso/child/bots/child_bot.py", "repo_id": "botbuilder-python", "token_count": 1234 }
422
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from aiohttp import web from aiohttp.web import Request, Response from botframework.connector.auth import AuthenticationConfiguration, SimpleCredentialProvider from botbuilder.core.integration import aiohttp_channel_service_...
botbuilder-python/tests/experimental/test-protocol/app.py/0
{ "file_path": "botbuilder-python/tests/experimental/test-protocol/app.py", "repo_id": "botbuilder-python", "token_count": 621 }
423
<?xml version='1.0' encoding='UTF-8'?> <glyph name="Aringacute" format="2"> <advance width="1200"/> <unicode hex="01FA"/> <outline> <component base="acutecomb.case" yOffset="240"/> <component base="Aring"/> </outline> <lib> <dict> <key>com.schriftgestaltung.Glyphs.ComponentInfo</key> <...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_ringacute.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_ringacute.glif", "repo_id": "cascadia-code", "token_count": 425 }
424
<?xml version='1.0' encoding='UTF-8'?> <glyph name="Hbar" format="2"> <advance width="1200"/> <unicode hex="0126"/> <outline> <contour> <point x="42" y="1002" type="line"/> <point x="1158" y="1002" type="line"/> <point x="1158" y="1192" type="line"/> <point x="42" y="1192" type="line"/...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/H_bar.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/H_bar.glif", "repo_id": "cascadia-code", "token_count": 372 }
425
<?xml version='1.0' encoding='UTF-8'?> <glyph name="ainTwodotsverticalabove-ar.init" format="2"> <advance width="1200"/> <outline> <component base="ain-ar.init"/> <component base="twodotsverticalabove-ar" xOffset="61" yOffset="353"/> </outline> <lib> <dict> <key>public.markColor</key> <s...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif", "repo_id": "cascadia-code", "token_count": 170 }
426
<?xml version='1.0' encoding='UTF-8'?> <glyph name="backslash_backslash.liga" format="2"> <advance width="1200"/> <outline> <component base="backslash" xOffset="118"/> <component base="backslash" xOffset="1000"/> </outline> <lib> <dict> <key>com.schriftgestaltung.Glyphs.ComponentInfo</key> ...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/backslash_backslash.liga.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/backslash_backslash.liga.glif", "repo_id": "cascadia-code", "token_count": 421 }
427
<?xml version='1.0' encoding='UTF-8'?> <glyph name="bottomHalfBlackDiamond" format="2"> <advance width="1200"/> <unicode hex="2B19"/> <note> uni2B19 </note> <outline> <contour> <point x="67" y="710" type="line"/> <point x="600" y="192" type="line"/> <point x="1133" y="710" type="line"/> ...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackD_iamond.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackD_iamond.glif", "repo_id": "cascadia-code", "token_count": 389 }
428
<?xml version='1.0' encoding='UTF-8'?> <glyph name="bulletoperator" format="2"> <advance width="1200"/> <unicode hex="2219"/> <outline> <component base="bullet"/> </outline> <lib> <dict> <key>com.schriftgestaltung.Glyphs.ComponentInfo</key> <array> <dict> <key>alignment</...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bulletoperator.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bulletoperator.glif", "repo_id": "cascadia-code", "token_count": 273 }
429
<?xml version='1.0' encoding='UTF-8'?> <glyph name="dad-ar.init" format="2"> <advance width="1200"/> <outline> <component base="sad-ar.init"/> <component base="dotabove-ar" xOffset="180" yOffset="363"/> </outline> <lib> <dict> <key>public.markColor</key> <string>0.98,0.36,0.67,1</string>...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.init.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.init.glif", "repo_id": "cascadia-code", "token_count": 161 }
430
<?xml version='1.0' encoding='UTF-8'?> <glyph name="dalDotbelow-ar" format="2"> <advance width="1200"/> <unicode hex="068A"/> <outline> <component base="dal-ar"/> <component base="dotbelow-ar" xOffset="-30" yOffset="-24"/> </outline> <lib> <dict> <key>public.markColor</key> <string>0.9...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.glif", "repo_id": "cascadia-code", "token_count": 172 }
431
<?xml version='1.0' encoding='UTF-8'?> <glyph name="dalVinvertedbelow-ar" format="2"> <advance width="1200"/> <unicode hex="075A"/> <outline> <component base="dal-ar"/> <component base="_vinvertedbelow-ar" xOffset="-30" yOffset="-24"/> </outline> <lib> <dict> <key>public.markColor</key> ...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.glif", "repo_id": "cascadia-code", "token_count": 174 }
432
<?xml version='1.0' encoding='UTF-8'?> <glyph name="ghain-ar.fina" format="2"> <advance width="1200"/> <outline> <component base="ain-ar.fina"/> <component base="dotabove-ar" xOffset="10" yOffset="273"/> </outline> <lib> <dict> <key>public.markColor</key> <string>0.98,0.36,0.67,1</string...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.fina.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.fina.glif", "repo_id": "cascadia-code", "token_count": 163 }
433
<?xml version='1.0' encoding='UTF-8'?> <glyph name="greater_greater_greater.liga" format="2"> <advance width="1200"/> <outline> <component base="greater" xOffset="2256"/> <component base="greater" xOffset="134"/> <component base="greater" xOffset="1200"/> </outline> <lib> <dict> <key>com.s...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_greater.liga.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_greater.liga.glif", "repo_id": "cascadia-code", "token_count": 562 }
434
<?xml version='1.0' encoding='UTF-8'?> <glyph name="guillemetright" format="2"> <advance width="1200"/> <unicode hex="00BB"/> <outline> <component base="guilsinglright" xOffset="-265"/> <component base="guilsinglright" xOffset="230"/> </outline> </glyph>
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/guillemetright.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/guillemetright.glif", "repo_id": "cascadia-code", "token_count": 106 }
435
<?xml version='1.0' encoding='UTF-8'?> <glyph name="hahHamzaabove-ar.init" format="2"> <advance width="1200"/> <outline> <component base="hah-ar.init"/> <component base="hamzaabove-ar" xOffset="-54" yOffset="-190"/> </outline> <lib> <dict> <key>public.markColor</key> <string>0.98,0.36,0....
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.init.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.init.glif", "repo_id": "cascadia-code", "token_count": 168 }
436
<?xml version='1.0' encoding='UTF-8'?> <glyph name="hahThreedotsabove-ar.init" format="2"> <advance width="1200"/> <outline> <component base="hah-ar.init"/> <component base="threedotsupabove-ar" xOffset="-34" yOffset="372"/> </outline> <lib> <dict> <key>public.markColor</key> <string>0.9...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.init.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.init.glif", "repo_id": "cascadia-code", "token_count": 170 }
437
<?xml version='1.0' encoding='UTF-8'?> <glyph name="highhamzaWaw-ar" format="2"> <advance width="1200"/> <unicode hex="0676"/> <anchor x="573" y="1120" name="top"/> <outline> <component base="waw-ar" yOffset="3"/> <component base="highhamza-ar" xOffset="383" yOffset="-337"/> </outline> <lib> <di...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.glif", "repo_id": "cascadia-code", "token_count": 499 }
438
<?xml version='1.0' encoding='UTF-8'?> <glyph name="jeemTwodotsabove-ar" format="2"> <advance width="1200"/> <unicode hex="08A2"/> <outline> <component base="jeem-ar"/> <component base="twodotshorizontalabove-ar" xOffset="-34" yOffset="392"/> </outline> <lib> <dict> <key>public.markColor</ke...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.glif", "repo_id": "cascadia-code", "token_count": 179 }
439
<?xml version='1.0' encoding='UTF-8'?> <glyph name="kehehThreedotsupbelow-ar.init" format="2"> <advance width="1200"/> <outline> <component base="keheh-ar.init"/> <component base="threedotsupbelow-ar" xOffset="-33" yOffset="-24"/> </outline> <lib> <dict> <key>public.markColor</key> <stri...
cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif/0
{ "file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif", "repo_id": "cascadia-code", "token_count": 174 }
440