; Dump of assembler code for function phase_1:
0x0000000000001439 <+0>: sub $0x8,%rsp
0x000000000000143d <+4>: lea 0x1d0c(%rip),%rsi ; 0x3150
0x0000000000001444 <+11>: callq 0x1909 <strings_not_equal>
0x0000000000001449 <+16>: test %eax,%eax
0x000000000000144b <+18>: jne 0x1452 <phase_1+25>
0x000000000000144d <+20>: add $0x8,%rsp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.
After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print "Hello, World!\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.4.0/mdb.min.css" rel="stylesheet" /> | |
<title>Sign in or sign up</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div *ngIf="fetchingError; else fetchingTemplate" class="alert alert-danger" role="alert"> | |
{{ fetchingError }} | |
</div> | |
<ng-template #fetchingTemplate> | |
<div class="spinner-border text-primary" *ngIf="fetching; else dataTemplate" role="status"> | |
<span class="visually-hidden">Loading...</span> | |
</div> | |
<ng-template #dataTemplate> | |
<div class="row"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PRIVATE KEY----- | |
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDGj5MyUNDZkbN2 | |
GB4CZow7j5349+QEWxZdprwXtgMn1dY6cPg1ZkE36bploApgJb7Eci/iQmiFDQJx | |
DSdEVFX08iVNMVAPjejR1a5pC3epKbBmoNiEH2EjyYvPpQA6sXgmj09MA7W7poON | |
gOP9iFb7ywOh11xLHmT3rHpOJDhXFVlgt2TdP33LKDG87y4KqWpFnScc3wvoLsU5 | |
S9GA/pd6HWbUouTu9VSvs96q9A1yewUhdyGiQAUKqVAUMoo0IQkZQBLl+MpMudbm | |
RLyGIAB8PqNPojSicx5LqoeS4l04Nre2hxQ+RpaV/CXTojqlUBhtIHpPM8veZZL4 | |
7rI+poVBAgMBAAECggEAOhrFrlGr7B8Q7xv7nCQ6ISvTxIl19jhZgSpLnHysy7lt | |
qUhpueakayJAY4DDyIMDIiVwEbvxLg4yiraYqQws4zMA62fkz8htOwpWsXKjn6MN | |
ddrXwUIVgQ13llnoiURpro79W3cydSkzEfOHxCdjnOc5tuB4p5rLXRbh63/55LFb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain_cohere import ChatCohere | |
from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder | |
from langchain_core.output_parsers import StrOutputParser | |
from langchain_community.document_loaders import WebBaseLoader | |
from langchain_cohere.embeddings import CohereEmbeddings | |
from langchain_community.vectorstores import FAISS | |
from langchain_text_splitters import RecursiveCharacterTextSplitter | |
from langchain.chains.combine_documents import create_stuff_documents_chain | |
from langchain.chains import create_retrieval_chain |